#include <bits/stdc++.h>
using namespace std;
int vis [400010]; long long int c=0; long long int n, m;
vector < int > g [400010];
vector < long long int > ans;
long long int o [400010];
int vis2 [400010];
int vis3 [400010];
void dfs ( int x, long long int d){
if (vis [x]) return ;
vis [x]=1;
if (x+n<=d){
g [x+n].push_back (x); dfs (x+n, d);
}
if (x+m<=d){
g [x].push_back (x+m); //dfs (x+m, d);
}
return ;
}
void dfs2 ( int v) {
vis2[v]=1;
for ( long long int u : g[v]) {
if (!vis2[u]) dfs2(u);
}
ans.push_back(v);
return ;
}
void is_cycle ( long long int x) {
if (vis3 [x]==1){
c=1; return ;
}
if (vis3 [x]) return ;
vis3 [x]=1;
for ( long long int u : g[x]) is_cycle (u);
vis3 [x]=2;
return ;
}
void sort_top( long long int d) {
memset (vis2, 0, sizeof vis2); ans.clear();
for ( long long int i=0; i<=d; i++) {
if (!vis2[i])
dfs2(i);
}
reverse(ans.begin(), ans.end());
return ;
}
long long int ok ( long long int d){
memset (vis, 0, sizeof vis);
memset (vis3, 0, sizeof vis3);
c=0;
for ( long long int i=0; i<200010; i++) g [i].clear();
for ( long long int i=0; i<=d; i++){
if (!vis [i]) dfs (i, d);
}
for ( long long int i=1; i<=d; i++) is_cycle (i);
if (c) return 0;
sort_top (d);
return 1;
}
int main(){
long long int t; cin >> t;
while (t--){
ans.clear ();
cin >> n >> m;
long long int lo=0, hi=2*max(n, m);
while (lo!=hi){
long long int mid=(lo+hi+1)/2;
if (ok (mid)) lo=mid;
else hi=mid-1;
}
cout << lo << endl; //cout << ans.size();
long long int pr=0;
for ( long long int i=0; i<=lo; i++){
if (ans [lo]==0) break;
pr--;
}
for ( long long int i=0; i<=lo; i++){
//cout << ans [i] << " ";
o [ans [i]]=pr; pr++;
}
for ( long long int i=1; i<lo+1; i++){
//cout << o [i] << "x";
cout << o [i]-o [i-1] << " ";
}
cout << endl;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
17 ms |
25752 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
31 ms |
14364 KB |
Ok |
2 |
Correct |
37 ms |
14300 KB |
Ok |
3 |
Correct |
43 ms |
14292 KB |
Ok |
4 |
Correct |
51 ms |
14332 KB |
Ok |
5 |
Correct |
46 ms |
14400 KB |
Ok |
6 |
Correct |
77 ms |
14668 KB |
Ok |
7 |
Correct |
128 ms |
15804 KB |
Ok |
8 |
Correct |
90 ms |
14988 KB |
Ok |
9 |
Correct |
135 ms |
16084 KB |
Ok |
10 |
Correct |
104 ms |
15320 KB |
Ok |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
14292 KB |
Ok |
2 |
Correct |
28 ms |
14404 KB |
Ok |
3 |
Correct |
26 ms |
14292 KB |
Ok |
4 |
Correct |
30 ms |
14292 KB |
Ok |
5 |
Correct |
28 ms |
14292 KB |
Ok |
6 |
Correct |
32 ms |
14292 KB |
Ok |
7 |
Correct |
34 ms |
14292 KB |
Ok |
8 |
Correct |
29 ms |
14292 KB |
Ok |
9 |
Correct |
34 ms |
14292 KB |
Ok |
10 |
Correct |
34 ms |
14292 KB |
Ok |
11 |
Correct |
38 ms |
14292 KB |
Ok |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
31 ms |
14292 KB |
Ok |
2 |
Correct |
36 ms |
14292 KB |
Ok |
3 |
Correct |
39 ms |
14292 KB |
Ok |
4 |
Correct |
42 ms |
14292 KB |
Ok |
5 |
Correct |
43 ms |
14360 KB |
Ok |
6 |
Correct |
681 ms |
35156 KB |
Ok |
7 |
Correct |
478 ms |
35176 KB |
Ok |
8 |
Correct |
969 ms |
38360 KB |
Ok |
9 |
Correct |
761 ms |
35888 KB |
Ok |
10 |
Correct |
486 ms |
28468 KB |
Ok |
11 |
Correct |
849 ms |
40760 KB |
Ok |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
17 ms |
25752 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
17 ms |
25752 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
17 ms |
25752 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |