#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include <set>
#include <climits>
#include <cmath>
#include <fstream>
#include <queue>
using namespace std;
const int MAXN = 10005;
int sz[MAXN], par[MAXN];
int get(int x) {
return x == par[x] ? x : par[x] = get(par[x]);
}
void unite(int a, int b) {
a = get(a), b = get(b);
if (a == b) {
return;
}
if (sz[a] > sz[b]) {
swap(a, b);
}
par[a] = b;
sz[b] += sz[a];
}
int main() {
int n, m, q;
cin >> n >> m >> q;
vector<pair<pair<int, int>, int>> queries;
int ans[MAXN];
for (int i = 0; i < MAXN; i++) {
sz[i] = 1;
par[i] = i;
ans[i] = -1;
}
for (int i = 0; i < q; i++) {
int a, b;
cin >> a >> b;
queries.push_back({ { a, b }, i });
}
for (int i = 0; i < m; i++) {
for (int j = m - i; j <= n; j += (m - i)) {
unite(m-i, j);
for (auto k : queries) {
if (ans[k.second] == -1) {
if (get(k.first.first) == get(k.first.second)) {
ans[k.second] = i + 1;
}
}
}
}
}
for (int i = 0; i < q; i++) {
cout << ans[i] << endl;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
84 ms |
760 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
18 ms |
1532 KB |
Execution killed with signal 11 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
62 ms |
3308 KB |
Execution killed with signal 7 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
99 ms |
4208 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
52 ms |
2544 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
57 ms |
2700 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
81 ms |
3308 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
106 ms |
4080 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
108 ms |
4176 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
126 ms |
4672 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |