-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path1009D. Relatively Prime Graph.cpp
67 lines (51 loc) · 1.25 KB
/
1009D. Relatively Prime Graph.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <bits/stdc++.h>
using namespace std;
int const N = 1e5 + 1;
int n, m, v;
pair<int, int> phi[N];
set<pair<int, int> > e;
void print(int x, int &cnt) {
for(int i = 1; cnt > 0 && i <= n; ++i)
if(i != x && __gcd(x, i) == 1) {
if(e.count({min(x, i), max(x, i)}) == 1)
continue;
e.insert({min(x, i), max(x, i)});
printf("%d %d\n", x, i), --cnt;
}
}
int main() {
scanf("%d %d", &n, &m);
for(int i = 1; i <= n; ++i)
phi[i].first = phi[i].second = i;
for(int p = 2; p <= n; ++p)
if(phi[p].first == p) {
phi[p].first = p - 1;
for(int i = 2 * p; i <= n; i += p)
phi[i].first = (phi[i].first / p) * (p - 1);
}
long long to = 0;
for(int i = 1; i <= n; ++i)
to += phi[i].first;
if(to - 1 < m || m < n - 1) {
puts("Impossible");
return 0;
}
puts("Possible");
for(int i = n; i > 0; --i)
if(phi[i].first == phi[i].second - 1) {
v = phi[i].second;
break;
}
for(int i = 1; i <= n; ++i) {
if(i == v)
continue;
printf("%d %d\n", v, i);
e.insert({min(v, i), max(v, i)});
}
m -= (n - 1);
sort(phi + 1, phi + n + 1);
reverse(phi + 1, phi + n + 1);
for(int i = 1; m > 0 && i <= n; ++i)
print(phi[i].second, m);
return 0;
}