QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#572246 | #5088. Two Choreographies | daxinghao# | AC ✓ | 122ms | 30188kb | C++14 | 3.3kb | 2024-09-18 13:15:24 | 2024-09-18 13:15:24 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int n, i, j, k, a, b, par[100010], cnt[100010], cnt2[100010], R, lca[100010][20], dep[100010];
vector<pair<int, int> >V;
vector<int>adj[100010];
vector<pair<int, int> >X[100010];
int Find(int v)
{
if(v==par[v])return v;
return par[v]=Find(par[v]);
}
void dfs(int v, int par)
{
lca[v][0]=par;
dep[v]=dep[par]+1;
for(auto p:adj[v])
{
if(dep[p])continue;
dfs(p, v);
}
}
int dist(int a, int b)
{
int res=0;
if(dep[a]<dep[b])swap(a, b);
for(int j=19;j>=0;j--)
{
if(dep[lca[a][j]]>=dep[b])a=lca[a][j],res+=(1<<j);
}
if(a==b)return res;
for(int j=19;j>=0;j--)
{
if(lca[a][j]!=lca[b][j])
{
res+=(1<<(j+1));
a=lca[a][j];
b=lca[b][j];
}
}
return res+2;
}
int get(int a, int b)
{
int res=0;
if(dep[a]<dep[b])swap(a, b);
for(int j=19;j>=0;j--)
{
if(dep[lca[a][j]]>=dep[b])a=lca[a][j],res+=(1<<j);
}
if(a==b)return a;
for(int j=19;j>=0;j--)
{
if(lca[a][j]!=lca[b][j])
{
res+=(1<<(j+1));
a=lca[a][j];
b=lca[b][j];
}
}
return lca[a][0];
}
void print(int a, int b)
{
int x=get(a, b);
while(1)
{
if(a==x)break;
printf("%d ", a);
a=lca[a][0];
}
printf("%d ", x);
vector<int>v;
while(1)
{
if(b==x)break;
v.push_back(b);
b=lca[b][0];
}
reverse(v.begin(), v.end());
for(auto p:v)printf("%d ", p);
puts("");
}
main()
{
scanf("%d", &n);
for(i=1;i<=n;i++)par[i]=i;
for(i=1;i<=2*n-3;i++)
{
scanf("%d %d", &a, &b);
V.push_back({a, b});
adj[a].push_back(b);
adj[b].push_back(a);
a=Find(a);b=Find(b);
par[b]=a;
}
for(i=1;i<=n;i++)
{
cnt[Find(i)]++;
}
for(auto p:V)
{
cnt2[Find(p.first)]++;
}
for(i=1;i<=n;i++)
{
if(cnt[i]>3)
{
if(cnt2[i]>=2*cnt[i]-3)break;
}
}
if(i==n+1)
{
assert(0);
}
R=i;
dfs(R, 0);
for(j=1;j<20;j++)
{
for(i=1;i<=n;i++)
{
if(lca[i][0])lca[i][j]=lca[lca[i][j-1]][j-1];
}
}
for(auto p:V)
{
if(Find(p.first)!=R)continue;
int x=dist(p.first, p.second);
if(x!=1)
{
X[x+1].push_back(p);
}
}
for(i=3;i<=cnt[R];i++)
{
if(X[i].size()>=2)break;
}
if(i==cnt[R]+1)
{
int a=X[cnt[R]][0].first, b=X[cnt[R]][0].second, c=X[cnt[R]-1][0].first, d=X[cnt[R]-1][0].second;
puts("3");
if(a==c)
{
printf("%d %d %d\n", a, b, d);
}
else if(a==d)
{
printf("%d %d %d\n", a, b, c);
}
else if(b==c)
{
printf("%d %d %d\n", a, b, d);
}
else
{
printf("%d %d %d\n", a, b, c);
}
print(X[3][0].first, X[3][0].second);
}
else
{
printf("%d\n", i);
print(X[i][0].first ,X[i][0].second);
print(X[i][1].first ,X[i][1].second);
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 11284kb
input:
4 1 2 1 3 1 4 2 3 2 4
output:
3 1 2 3 1 2 4
result:
ok
Test #2:
score: 0
Accepted
time: 2ms
memory: 11796kb
input:
5 1 2 1 3 1 4 1 5 2 3 2 5 3 4
output:
3 1 2 3 1 2 5
result:
ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 10812kb
input:
7 1 2 3 4 5 6 5 2 3 1 6 1 4 2 4 5 2 6 3 6 1 5
output:
3 2 1 6 1 6 5
result:
ok
Test #4:
score: 0
Accepted
time: 2ms
memory: 10808kb
input:
40 1 16 1 40 2 4 2 16 2 36 3 25 3 38 4 1 4 13 5 11 5 27 6 4 7 5 7 11 8 10 8 14 8 24 9 34 10 20 12 35 13 2 14 10 14 20 15 18 15 28 15 31 16 6 16 13 17 5 17 11 17 27 18 9 19 1 19 4 19 16 20 24 21 12 21 33 21 35 22 38 23 12 23 21 25 28 25 31 25 34 25 38 26 14 26 20 27 7 27 11 28 3 28 31 29 16 29 19 30 ...
output:
3 7 11 5 17 5 11
result:
ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 11420kb
input:
201 1 7 1 114 1 119 2 49 2 93 4 197 5 139 6 1 6 27 7 39 7 121 8 127 9 130 9 145 11 106 11 136 11 193 12 2 12 116 13 55 13 69 13 105 13 187 13 196 14 144 14 177 15 127 15 134 15 145 15 155 15 184 15 199 16 96 16 177 17 20 21 100 22 68 22 71 22 81 22 142 23 148 23 190 24 12 24 81 24 89 25 158 25 159 2...
output:
5 57 75 197 4 47 90 110 113 8 127
result:
ok
Test #6:
score: 0
Accepted
time: 6ms
memory: 10416kb
input:
8000 2 1508 2 3068 3 5268 3 5501 6 266 6 2737 6 3197 6 5863 6 6697 7 3492 9 427 9 794 9 3114 9 5509 10 2257 10 4348 11 1479 11 1957 11 2230 11 2500 11 3182 11 4399 11 5051 11 7727 12 7669 13 1403 13 5753 14 2871 14 6956 14 7959 15 6902 17 1630 17 3155 17 5950 18 7232 19 125 19 3280 19 5648 20 6879 2...
output:
5 6079 3734 4537 4489 6939 6272 5849 613 1021 4568
result:
ok
Test #7:
score: 0
Accepted
time: 66ms
memory: 23220kb
input:
99999 1 11261 1 21544 2 9017 2 63063 2 97990 3 11995 3 42473 4 19846 5 38099 6 35872 6 80509 7 73231 8 12356 9 35384 10 45091 12 86727 13 4938 13 48917 14 62383 14 89846 15 28458 15 44277 15 51725 15 84522 16 93258 17 13934 17 42238 18 19000 19 11278 19 23672 19 61502 19 78791 20 85057 20 88080 21 2...
output:
3 63062 4844 18923 77721 25906 26820
result:
ok
Test #8:
score: 0
Accepted
time: 61ms
memory: 23476kb
input:
100000 1 68531 2 97359 4 68578 4 83098 4 98443 5 8053 5 30270 5 86617 6 7074 6 12266 6 69396 7 52675 7 78316 7 90757 7 92242 8 32677 8 41353 8 41457 8 74508 9 44234 10 4973 10 38390 10 96049 11 28007 11 68620 13 3016 14 36748 15 8147 15 25110 15 28489 15 72947 15 99347 16 70760 17 12774 17 68407 17 ...
output:
3 58107 1057 21652 95931 5249 27372
result:
ok
Test #9:
score: 0
Accepted
time: 0ms
memory: 11360kb
input:
7 1 2 2 3 3 4 4 5 5 6 6 7 7 5 1 4 7 3 1 6 7 1
output:
3 7 1 6 7 6 5
result:
ok
Test #10:
score: 0
Accepted
time: 45ms
memory: 30096kb
input:
100000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 5...
output:
3 1 100000 99999 1 2 3
result:
ok
Test #11:
score: 0
Accepted
time: 0ms
memory: 11200kb
input:
8 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 6 1 4 8 4 8 3 8 2 1 8
output:
3 1 8 2 8 7 6
result:
ok
Test #12:
score: 0
Accepted
time: 0ms
memory: 12888kb
input:
9 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 1 3 1 4 9 5 9 4 1 7 9 2 1 9
output:
3 1 9 2 1 2 3
result:
ok
Test #13:
score: 0
Accepted
time: 3ms
memory: 13280kb
input:
10 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 8 1 4 10 6 1 6 10 4 10 3 1 9 10 1
output:
3 10 1 9 10 9 8
result:
ok
Test #14:
score: 0
Accepted
time: 2ms
memory: 11732kb
input:
1000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 1000 1 999 1 2 3
result:
ok
Test #15:
score: 0
Accepted
time: 4ms
memory: 14676kb
input:
9999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 1 9999 9998 9999 9998 9997
result:
ok
Test #16:
score: 0
Accepted
time: 7ms
memory: 11492kb
input:
10000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 10000 9999 10000 9999 9998
result:
ok
Test #17:
score: 0
Accepted
time: 54ms
memory: 29592kb
input:
94753 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 94753 94752 1 2 3
result:
ok
Test #18:
score: 0
Accepted
time: 48ms
memory: 30176kb
input:
99999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 99999 2 1 2 3
result:
ok
Test #19:
score: 0
Accepted
time: 0ms
memory: 11208kb
input:
7 1 2 2 3 3 4 4 5 5 6 6 7 1 3 1 4 1 5 1 6 1 7
output:
3 1 7 6 1 2 3
result:
ok
Test #20:
score: 0
Accepted
time: 48ms
memory: 29348kb
input:
100000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 5...
output:
3 1 100000 99999 1 2 3
result:
ok
Test #21:
score: 0
Accepted
time: 2ms
memory: 11680kb
input:
8 1 2 2 3 3 4 4 5 5 6 6 7 7 8 1 3 1 4 1 5 1 6 1 7 1 8
output:
3 1 8 7 1 2 3
result:
ok
Test #22:
score: 0
Accepted
time: 0ms
memory: 9808kb
input:
9 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 1 3 1 4 1 5 1 6 1 7 1 8 1 9
output:
3 1 9 8 1 2 3
result:
ok
Test #23:
score: 0
Accepted
time: 2ms
memory: 11476kb
input:
10 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10
output:
3 1 10 9 1 2 3
result:
ok
Test #24:
score: 0
Accepted
time: 3ms
memory: 9912kb
input:
1000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 1 1000 999 1 2 3
result:
ok
Test #25:
score: 0
Accepted
time: 7ms
memory: 11164kb
input:
9999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 1 9999 9998 1 2 3
result:
ok
Test #26:
score: 0
Accepted
time: 4ms
memory: 14632kb
input:
10000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 10000 9999 1 2 3
result:
ok
Test #27:
score: 0
Accepted
time: 56ms
memory: 28664kb
input:
97065 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 97065 97064 1 2 3
result:
ok
Test #28:
score: 0
Accepted
time: 38ms
memory: 29604kb
input:
99999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 1 99999 99998 1 2 3
result:
ok
Test #29:
score: 0
Accepted
time: 2ms
memory: 11232kb
input:
7 1 2 2 3 3 4 4 5 5 6 6 7 7 5 7 4 7 3 7 2 7 1
output:
3 7 1 2 7 6 5
result:
ok
Test #30:
score: 0
Accepted
time: 42ms
memory: 29260kb
input:
100000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 5...
output:
3 100000 1 2 100000 99999 99998
result:
ok
Test #31:
score: 0
Accepted
time: 0ms
memory: 10416kb
input:
8 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 6 8 5 8 4 8 3 8 2 8 1
output:
3 8 1 2 8 7 6
result:
ok
Test #32:
score: 0
Accepted
time: 2ms
memory: 11676kb
input:
9 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 7 9 6 9 5 9 4 9 3 9 2 9 1
output:
3 9 1 2 9 8 7
result:
ok
Test #33:
score: 0
Accepted
time: 2ms
memory: 11380kb
input:
10 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 8 10 7 10 6 10 5 10 4 10 3 10 2 10 1
output:
3 10 1 2 10 9 8
result:
ok
Test #34:
score: 0
Accepted
time: 0ms
memory: 10440kb
input:
1000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 1000 1 2 1000 999 998
result:
ok
Test #35:
score: 0
Accepted
time: 0ms
memory: 14736kb
input:
9999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 ...
output:
3 9999 1 2 9999 9998 9997
result:
ok
Test #36:
score: 0
Accepted
time: 7ms
memory: 14704kb
input:
10000 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 10000 1 2 10000 9999 9998
result:
ok
Test #37:
score: 0
Accepted
time: 39ms
memory: 28716kb
input:
92892 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 92892 1 2 92892 92891 92890
result:
ok
Test #38:
score: 0
Accepted
time: 44ms
memory: 30188kb
input:
99999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53...
output:
3 99999 1 2 99999 99998 99997
result:
ok
Test #39:
score: 0
Accepted
time: 0ms
memory: 10504kb
input:
8 5 6 7 3 2 3 7 8 1 5 2 8 8 5 4 5 8 1 7 6 3 4 2 6 2 1
output:
4 7 3 2 8 2 3 7 6
result:
ok
Test #40:
score: 0
Accepted
time: 0ms
memory: 11512kb
input:
10 6 7 1 7 2 5 2 4 5 4 10 4 3 2 6 5 10 5 2 8 4 1 1 2 8 9 7 8 3 10 9 10 4 3
output:
3 5 2 4 4 10 3
result:
ok
Test #41:
score: 0
Accepted
time: 3ms
memory: 11752kb
input:
1000 272 271 393 394 369 404 981 980 169 185 362 361 387 386 482 481 383 382 370 788 266 106 938 223 876 877 107 106 109 110 481 480 633 14 886 885 588 589 673 567 568 693 531 932 562 561 871 872 89 959 951 950 119 556 484 891 981 271 75 74 443 444 865 730 374 15 580 233 716 165 882 829 622 623 606 ...
output:
5 141 140 98 698 142 395 396 505 504 30
result:
ok
Test #42:
score: 0
Accepted
time: 3ms
memory: 10716kb
input:
9999 1503 1502 1862 3917 4579 4578 9929 8919 4989 4990 4479 7716 5512 5511 4389 4390 4430 910 5616 3889 5708 5879 8848 8849 5400 5076 7827 3718 1169 1168 1574 213 3196 4013 2414 2415 2857 2858 9177 9178 7189 7190 3550 3549 7446 5351 7766 8059 2132 2646 8813 7870 2521 2522 5158 5157 4623 4624 4957 49...
output:
5 609 608 607 606 605 4935 5779 5780 5781 4934
result:
ok
Test #43:
score: 0
Accepted
time: 4ms
memory: 10628kb
input:
10000 5462 4989 4542 4541 7300 8478 4730 3574 7930 7051 750 7627 117 3045 4274 4275 3840 3841 5706 3638 7108 7107 28 29 2564 2563 2784 2393 1193 1192 2040 1286 3688 3687 8048 2319 2404 2405 8641 8640 6992 8729 5085 5086 5130 5131 6813 9806 6592 6769 2806 2805 7482 6021 7371 3994 4939 3217 1905 6540 ...
output:
3 7956 7957 4690 5548 6182 5547
result:
ok
Test #44:
score: 0
Accepted
time: 110ms
memory: 27692kb
input:
99999 49253 51314 3093 3092 88617 72981 43336 77222 65739 55450 5166 90677 57235 57234 51512 51511 73274 86124 86611 77777 21808 21809 2794 2795 64109 69571 80102 80101 56177 27689 55899 58255 16908 16909 53732 53733 9213 9214 33157 33158 10706 10707 76016 11308 51459 74662 58149 58150 80976 56845 2...
output:
3 25721 25720 9952 78979 78978 78977
result:
ok
Test #45:
score: 0
Accepted
time: 103ms
memory: 26144kb
input:
96827 15894 15895 33528 48199 50450 50451 63703 63702 49937 31980 93823 45726 96052 96051 54334 16426 9193 11656 49315 10079 10614 33488 84027 84028 3612 5321 64903 64904 56901 32611 33578 68521 47938 47939 32618 53239 89613 89612 82729 82728 34512 34511 54064 38673 56419 56420 23775 75336 85989 172...
output:
3 30807 30808 30806 3432 72084 3431
result:
ok
Test #46:
score: 0
Accepted
time: 118ms
memory: 26804kb
input:
100000 72105 72104 4352 4351 59159 59160 78993 64103 39235 39234 4458 36615 23543 53027 54635 54634 80821 80822 8720 72158 49535 78364 64357 3035 93490 6597 52195 13285 70186 70187 14748 98067 15516 71738 77617 77616 68836 68835 61569 61570 28477 28289 50823 50822 71759 49859 59464 59463 83701 83702...
output:
4 1001 70957 80045 80046 88720 88719 75293 75294
result:
ok
Test #47:
score: 0
Accepted
time: 98ms
memory: 26656kb
input:
100000 53877 17887 7877 7878 35510 37710 15520 83926 7572 7573 11839 11840 75139 75140 63678 63679 66199 66198 3262 3263 78203 78204 87574 87575 53474 67658 86593 86594 28943 17005 71369 264 3802 41402 30583 30584 38511 38510 36776 90902 57208 57209 15408 48313 73488 46167 88419 93118 57411 57412 42...
output:
3 31815 31813 31814 54375 54374 54373
result:
ok
Test #48:
score: 0
Accepted
time: 120ms
memory: 27532kb
input:
100000 78895 34726 20392 44705 57147 22069 31133 31132 78946 78947 53758 53757 68970 68971 75904 87094 12439 12438 92849 92848 80817 80818 76732 53635 79930 79931 78362 78363 87661 87662 47807 47808 73696 27386 30646 30645 17648 81813 47120 47119 84905 84906 87235 8058 8238 88843 86537 12191 68784 6...
output:
3 60959 32264 60958 52915 52916 52917
result:
ok
Test #49:
score: 0
Accepted
time: 100ms
memory: 26820kb
input:
94055 34740 73546 30256 30255 20298 20299 62592 62591 49467 49468 65041 2277 38788 38787 58735 65469 2375 2376 77665 77666 36242 80298 75550 16701 13820 64701 83448 83449 79313 83990 2213 2212 22172 22171 72441 92184 10391 30730 39194 38883 25064 90160 69140 85068 50433 31078 58353 4381 38997 38998 ...
output:
4 84648 84649 84650 84651 85139 85138 30040 85140
result:
ok
Test #50:
score: 0
Accepted
time: 0ms
memory: 10592kb
input:
7 6 2 4 3 3 7 7 6 1 2 7 2 1 5 6 5 4 5 5 7 2 3
output:
4 5 4 3 7 2 6 7 3
result:
ok
Test #51:
score: 0
Accepted
time: 116ms
memory: 27172kb
input:
99084 7128 52592 26282 84361 19470 70586 2431 2430 33596 72767 70001 70000 65483 65484 76493 76492 62792 39465 4476 31233 72512 72511 94244 69778 84662 84663 32214 32213 4717 4718 73918 26226 71389 71390 45765 45764 87589 87590 6207 6206 47094 70119 30908 29826 34602 40286 44413 44412 21890 21889 24...
output:
4 41615 41614 41613 72066 84249 84250 84247 84248
result:
ok
Test #52:
score: 0
Accepted
time: 0ms
memory: 12700kb
input:
8 6 5 3 4 2 3 3 7 2 4 6 7 4 8 5 2 2 1 1 6 7 8 5 4 8 1
output:
4 3 4 8 7 5 2 3 4
result:
ok
Test #53:
score: 0
Accepted
time: 0ms
memory: 10548kb
input:
9 6 7 7 3 9 8 4 3 2 1 6 2 6 8 5 6 7 8 1 4 9 4 4 5 9 6 1 9 2 3
output:
6 6 7 3 4 1 2 7 3 4 1 9 8
result:
ok
Test #54:
score: 0
Accepted
time: 0ms
memory: 10816kb
input:
9 5 4 1 5 3 2 1 2 2 9 6 7 1 8 3 4 7 5 5 6 5 9 6 3 9 1 7 8 8 9
output:
3 5 7 6 9 8 1
result:
ok
Test #55:
score: 0
Accepted
time: 3ms
memory: 12816kb
input:
10 1 8 10 9 4 9 6 4 2 1 2 3 7 2 4 5 10 3 5 8 2 9 6 5 8 9 4 8 6 7 7 8 3 4
output:
4 7 8 1 2 2 3 10 9
result:
ok
Test #56:
score: 0
Accepted
time: 2ms
memory: 10056kb
input:
9 5 6 8 7 1 2 5 2 8 6 6 9 9 8 2 9 4 7 4 1 4 5 6 1 2 3 3 4 7 6
output:
4 6 5 2 9 6 5 2 1
result:
ok
Test #57:
score: 0
Accepted
time: 0ms
memory: 10368kb
input:
10 1 2 3 2 6 8 5 4 5 6 8 7 4 1 6 7 4 3 2 5 3 10 8 9 6 2 10 1 9 3 8 4 9 10
output:
3 8 6 7 9 10 3
result:
ok
Test #58:
score: 0
Accepted
time: 2ms
memory: 10248kb
input:
9 3 6 2 1 5 6 9 7 4 2 4 3 1 3 8 9 1 5 6 7 4 6 1 9 7 8 4 5 2 3
output:
3 7 9 8 2 1 3
result:
ok
Test #59:
score: 0
Accepted
time: 0ms
memory: 12880kb
input:
4 1 2 4 1 4 3 3 1 4 2
output:
3 4 1 3 4 1 2
result:
ok
Test #60:
score: 0
Accepted
time: 2ms
memory: 12724kb
input:
10 8 10 10 9 7 8 8 3 6 3 1 3 9 6 1 8 5 10 3 4 10 4 3 9 2 1 1 9 6 5 6 10 9 5
output:
3 1 3 8 6 9 10
result:
ok
Test #61:
score: 0
Accepted
time: 3ms
memory: 13056kb
input:
1000 937 387 833 217 405 422 502 356 529 374 497 662 803 845 726 979 999 43 463 620 749 828 661 573 191 708 513 963 737 819 439 571 787 166 873 842 993 566 590 908 34 184 699 314 756 255 996 242 653 402 451 656 90 762 562 382 945 397 600 816 789 890 378 965 613 827 319 645 156 684 477 570 131 419 43...
output:
3 618 952 974 86 387 937
result:
ok
Test #62:
score: 0
Accepted
time: 9ms
memory: 14508kb
input:
9999 2524 8191 1533 7530 356 1008 8210 3560 2071 540 2876 4324 9158 3771 2872 5625 4701 4769 4728 2104 2264 9841 4009 2392 9900 4852 9836 1027 3996 1557 97 1319 5587 7722 7488 4073 2940 9762 246 6394 380 6935 7929 3557 8049 8841 2105 7255 2710 6626 7926 6255 8392 6949 6174 2040 9959 8955 8701 3730 5...
output:
3 888 1923 5092 7590 429 1933
result:
ok
Test #63:
score: 0
Accepted
time: 6ms
memory: 10684kb
input:
10000 8697 615 9680 5350 5924 4698 4478 7356 3510 7535 6046 3305 885 4890 8224 2297 2267 8411 7331 7035 1747 7766 3540 1409 4143 212 9541 5746 1062 539 2060 9566 5293 350 6143 2220 1446 2866 4603 4151 9625 5078 3432 4169 1528 1525 9522 2738 3154 3100 8560 9024 1200 4420 3138 9200 2346 182 1694 6303 ...
output:
3 5298 607 8920 8942 5443 1612
result:
ok
Test #64:
score: 0
Accepted
time: 95ms
memory: 27256kb
input:
99999 84520 53880 95569 33800 30674 78149 34453 98159 29766 87018 38710 45543 78103 64279 95388 6083 90709 6245 28076 59536 89121 25989 17455 86681 24869 49677 88947 54071 59069 14675 2211 80543 84618 24731 71749 96646 3072 81888 41124 19659 78748 83891 86353 92485 51719 3101 86489 39980 2846 67916 ...
output:
3 21683 85263 30761 58273 13212 25562
result:
ok
Test #65:
score: 0
Accepted
time: 94ms
memory: 26344kb
input:
91648 4472 25803 85060 29770 38233 78885 69505 11992 74584 56733 44447 19721 38611 47816 64374 1051 85078 88959 3376 77926 30914 66149 47776 2665 24048 19740 63674 58321 31035 27289 28597 78620 26732 63968 3921 28544 88344 48945 17800 78918 39469 31300 58279 76356 88378 67190 87900 74995 96 31664 86...
output:
4 36018 45054 57960 56883 34054 63050 29903 574
result:
ok
Test #66:
score: 0
Accepted
time: 110ms
memory: 27152kb
input:
100000 13352 1027 26975 28733 58784 97055 76806 68544 9735 23022 13365 25281 80851 10373 95287 91860 59771 31042 51912 68412 26741 29961 34375 25709 13755 46111 50736 39736 95695 18184 57397 62912 97590 59408 6754 50322 16563 80551 76371 58366 31788 49867 41825 95414 16211 24996 32999 62870 4946 820...
output:
4 16815 15905 6953 64854 65561 55543 34887 5255
result:
ok
Test #67:
score: 0
Accepted
time: 122ms
memory: 27104kb
input:
100000 20959 25336 91898 62660 72720 51175 61002 85224 24094 15898 17841 75902 96298 91723 60352 50707 73566 69660 14089 5220 50982 29437 79898 86395 1734 56103 52555 46603 63369 73948 72151 60200 25210 3152 38452 28051 85173 32730 57691 99457 69691 30053 2072 97708 97968 56344 65532 44367 12342 346...
output:
3 38529 71423 30935 52465 5035 63185
result:
ok
Test #68:
score: 0
Accepted
time: 119ms
memory: 27132kb
input:
100000 16435 98228 89180 57831 43189 90862 16293 29922 91964 47722 34278 901 54950 37026 95302 76757 42452 74646 38280 38053 65541 27258 36041 61691 27600 40344 23817 62272 71323 52794 81547 61348 39381 11415 52865 23221 79787 93823 91146 34985 66479 79975 16439 79659 36874 49350 50891 86175 33479 5...
output:
4 60861 95694 27908 64075 72592 98856 37544 984
result:
ok
Test #69:
score: 0
Accepted
time: 103ms
memory: 26808kb
input:
95728 48566 69797 54999 85490 75942 40279 51954 81016 58241 2418 39067 29211 81791 12312 77375 65571 56275 38417 19545 83406 22125 73565 35590 62148 23344 55309 39501 86411 68603 19541 75927 74829 9467 14763 65439 91977 45467 52791 94490 35940 32928 3568 76229 95312 78704 76042 23090 10023 59356 602...
output:
3 70607 88623 18132 16718 53086 55129
result:
ok
Test #70:
score: 0
Accepted
time: 0ms
memory: 10104kb
input:
5 2 4 2 3 5 3 5 1 1 3 4 5 1 2
output:
4 5 3 2 1 4 2 3 5
result:
ok
Test #71:
score: 0
Accepted
time: 100ms
memory: 26376kb
input:
93309 71437 20546 7225 87604 42872 46689 48394 70601 79628 80229 46286 21730 85596 24788 78402 13849 4309 88242 46678 82455 59146 64364 43993 73409 35381 77031 24159 45740 49493 15690 53789 31467 78790 88954 13595 76316 85033 35716 5254 44215 33086 43366 81849 23644 22197 53918 78118 73130 44242 230...
output:
3 52982 6727 41885 57633 15573 83191
result:
ok
Test #72:
score: 0
Accepted
time: 3ms
memory: 12996kb
input:
6 5 3 1 3 5 2 5 1 3 6 6 4 1 2 5 6 3 2
output:
3 5 3 1 3 5 6
result:
ok
Test #73:
score: 0
Accepted
time: 2ms
memory: 12896kb
input:
7 6 3 5 4 7 1 1 6 3 1 7 3 2 7 7 4 3 5 2 5 7 5
output:
6 7 1 6 3 5 4 2 7 1 6 3 5
result:
ok
Test #74:
score: 0
Accepted
time: 0ms
memory: 10976kb
input:
8 5 1 7 6 7 3 7 5 1 8 3 2 6 5 1 4 6 1 7 8 6 3 7 4 8 6
output:
3 7 6 3 7 6 5
result:
ok
Test #75:
score: 0
Accepted
time: 0ms
memory: 11836kb
input:
9 1 3 4 8 2 4 8 6 5 4 8 5 9 2 9 4 8 9 1 6 2 3 5 2 4 7 7 1 9 5
output:
3 5 8 4 8 5 9
result:
ok
Test #76:
score: 0
Accepted
time: 0ms
memory: 11884kb
input:
10 6 5 8 3 8 9 9 10 3 4 10 6 7 8 6 9 2 3 4 7 6 8 4 10 6 3 6 4 5 10 5 4 9 5
output:
3 6 10 9 6 5 4
result:
ok
Test #77:
score: 0
Accepted
time: 2ms
memory: 9792kb
input:
9 6 5 5 8 7 8 2 3 7 2 3 6 5 2 9 1 6 4 5 3 5 7 4 2 4 7 3 1 9 7
output:
3 5 6 3 5 8 7
result:
ok
Test #78:
score: 0
Accepted
time: 2ms
memory: 10096kb
input:
10 3 6 10 4 3 7 2 3 3 8 8 9 10 9 2 10 6 5 4 3 4 2 1 3 8 6 5 1 10 1 10 7 10 6
output:
3 3 6 8 2 4 10
result:
ok