-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10157.cpp
44 lines (40 loc) · 917 Bytes
/
10157.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Created by kdongha on 2019/11/28.
//
#include <bits/stdc++.h>
int arr[1000][1000];
int x, y, d, C, R, K;
int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};
void solve() {
std::cin >> C >> R >> K;
if (K > C * R) {
std::cout << 0;
} else {
x = y = d = 0;
for (int i = 1; i < C * R; i++) {
if (i == K) {
break;
}
arr[x][y] = i;
int nx = x + dx[d];
int ny = y + dy[d];
while (nx < 0 || ny < 0 || nx >= R || ny >= C || arr[nx][ny]) {
d++;
d %= 4;
nx = x + dx[d];
ny = y + dy[d];
}
x = nx;
y = ny;
}
std::cout << y + 1 << " " << x + 1;
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}