QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#759513 | #9543. Good Partitions | yyawdxhp | AC ✓ | 403ms | 26932kb | C++20 | 8.8kb | 2024-11-18 09:32:02 | 2024-11-18 09:32:03 |
Judging History
answer
// Problem: I. Good Partitions
// Contest: Codeforces - 2024 ICPC Asia Chengdu Regional Contest (The 3rd Universal Cup. Stage 15: Chengdu)
// URL: https://codeforces.com/gym/105486/problem/I
// Memory Limit: 1024 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)
#include<bits/stdc++.h>
//#define int long long
#define ls root<<1
#define rs root<<1|1
using namespace std;
const int N=2e5+10;
struct SegmentTree{
int l,r,gcd;
int left,right;
int tag;
}tree[N<<3];
long long arr[N<<1];
int L[N<<1],R[N<<1],Len[N<<1];
int cnt[N<<1];
int n,m,k,q;
void pushup(int root)
{
tree[root].gcd=__gcd(tree[ls].gcd,tree[rs].gcd);
// cout<<tree[root].gcd<<' ';
// tree[root].left=min(tree[ls].left,tree[rs].left);
// tree[root].right=max(tree[ls].right,tree[rs].right);
//if(tree[root].right==n) tree[root].gcd=0;
}
void build(int l,int r,int root)
{
tree[root].l=l,tree[root].r=r;
tree[root].gcd=0;
tree[root].left=0;
tree[root].right=0;
tree[root].tag=0;
if(l==r)
{
tree[root].gcd=Len[l];
tree[root].left=L[l];
tree[root].right=R[l];
if(R[l]==n) tree[root].gcd=0;
tree[root].tag=0;
return;
}
int mid=l+r>>1;
build(l,mid,ls);
build(mid+1,r,rs);
pushup(root);
}
void pushdown(int root)
{
if(!tree[root].tag) return;
if(tree[root].right==n) tree[root].gcd=0;
tree[ls].gcd=tree[root].gcd;
tree[rs].gcd=tree[root].gcd;
tree[ls].left=tree[root].left;
tree[rs].left=tree[root].left;
tree[ls].right=tree[root].right;
tree[rs].right=tree[root].right;
tree[ls].tag=tree[rs].tag=tree[root].tag;
tree[root].tag=tree[root].left=tree[root].left=0;
}
void Change(int l,int r,int root,int val)
{
if(tree[root].l>=l&&tree[root].r<=r){
//pushdown(root);
tree[root].gcd=val;
if(r==n) tree[root].gcd=0;
tree[root].right=r;
tree[root].left=l;
tree[root].tag=1;
return;
}
pushdown(root);
int mid=tree[root].l+tree[root].r>>1;
if(l<=mid) Change(l,r,ls,val);
if(r>mid) Change(l,r,rs,val);
pushup(root);
}
int Search1(int pos,int root,int f)
{
if(tree[root].l==tree[root].r)
return (f==0?tree[root].left:tree[root].right);
pushdown(root);
int mid=tree[root].l+tree[root].r>>1;
int kk=0;
if(pos<=mid) kk=Search1(pos,ls,f);
if(pos>mid) kk=Search1(pos,rs,f);
return kk;
}
int Query(int l,int r,int root)
{
if(tree[root].l>=l&&tree[root].r<=r){
return tree[root].gcd;
}
pushdown(root);
int mid=tree[root].l+tree[root].r>>1;
int ans=0;
if(l<=mid )ans=__gcd(ans,Query(l,r,ls));
if(r>mid) ans=__gcd(ans,Query(l,r,rs));
return ans;
}
void shuchu(int pos)
{
//cout<<Query(1,n,1)<<' ';
int k=Query(1,n,1);
//cout<<k<<' ';
if(k==0) cout<<n<<'\n';
else
cout<<cnt[k]<<'\n';
}
void solve()
{
cin>>n>>q;
for(int i=1;i<=n;i++) cin>>arr[i];
arr[n+1]=0ll;
for(int i=1;i<=n;i++)
{
int pos=i;
while(pos+1<=n&&arr[pos]<=arr[pos+1]) pos++;
int len=pos-i+1;
for(int j=i;j<=pos;j++)
Len[j]=(pos==n?0ll:len),L[j]=i,R[j]=pos;
i=pos;
}
build(1,n,1);
//arr[n+1]=2e9+1;
//cnt[0]=5;
//cout<<endl;
//cout<<tree[1].gcd<<'\n';
//cout<<Len[1]<<' '<<Len[2]<<' '<<Len[3]<<'\n';
shuchu(1);
while(q--)
{
long long val;
int pos;
cin>>pos>>val;
long long x=arr[pos-1];
long long y=arr[pos];
long long z=arr[pos+1];
//情况1
if(x>y&&y>z){
if(x>val&&val>z)
{
arr[pos]=val;
//直接输出
shuchu(pos);
}
if(x>val&&val<=z){
if(pos+1<=n){
int rr=Search1(pos+1,1,1);
int len=rr-pos+1;
Change(pos,rr,1,len);
}
arr[pos]=val;
shuchu(pos);
//
}
if(x<=val&&val>z){
if(pos-1>=1){
int ll=Search1(pos-1,1,0);
int len=pos-ll+1;
Change(ll,pos,1,len);
}
arr[pos]=val;
shuchu(pos);
}
if(x<=val&&val<=z){
int ll=Search1(pos-1,1,0);
if(pos-1<=0) ll=1;
int rr=Search1(pos+1,1,1);
if(pos+1>n) rr=n;
int len=rr-ll+1;
Change(ll,rr,1,len);
arr[pos]=val;
shuchu(pos);
}
}
//情况2
if(x>y&&y<=z)
{
if(x>val&&val<=z)
{
arr[pos]=val;
//直接输出
shuchu(pos);
}
if(x>val&&val>z){
if(pos+1<=n){
int rr=Search1(pos+1,1,1);
int len=rr-pos;
Change(pos+1,rr,1,len);
}
Change(pos,pos,1,1);
arr[pos]=val;
shuchu(pos);
//
}
if(x<=val&&val>z){
if(pos-1>0){
int ll=Search1(pos-1,1,0);
int len=pos-ll+1;
Change(ll,pos,1,len);}
if(pos+1<=n){
int rr=Search1(pos+1,1,1);
int len=rr-pos;
Change(pos+1,rr,1,len);
}
arr[pos]=val;
shuchu(pos);
}
if(x<=val&&val<=z){
int ll=Search1(pos-1,1,0);//0表示找左边界
if(pos-1<=0) ll=1;
int rr=Search1(pos,1,1);//1表示找右边界
int len=rr-ll+1;
Change(ll,rr,1,len);
arr[pos]=val;
shuchu(pos);
}
}
//情况3
if(x<=y&&y>z){
if(x>val&&val>z)
{
//直接输出
int ll=Search1(pos-1,1,0);
int len=pos-ll;
//cout<<len<<' ';
Change(ll,pos-1,1,len);
Change(pos,pos,1,1);
arr[pos]=val;
shuchu(pos);
}
if(x>val&&val<=z){
int ll=Search1(pos-1,1,0);
int len=pos-ll;
Change(ll,pos-1,1,len);
int rr=Search1(pos+1,1,1);
len=rr-pos+1;
Change(pos,rr,1,len);
arr[pos]=val;
shuchu(pos);
//
}
if(x<=val&&val>z){
arr[pos]=val;
shuchu(pos);
}
if(x<=val&&val<=z){
int rr=Search1(pos+1,1,1);
int ll=Search1(pos-1,1,0);
int len=rr-ll+1;
Change(ll,rr,1,len);
arr[pos]=val;
shuchu(pos);
}
}
//情况4
if(x<=y&&y<=z){
if(x>val&&val>z)
{
//直接输出
int ll=Search1(pos-1,1,0);
int len=pos-ll;
Change(ll,pos-1,1,len);
int rr=Search1(pos+1,1,1);
len=rr-pos;
Change(pos+1,rr,1,len);
Change(pos,pos,1,1);
arr[pos]=val;
shuchu(pos);
}
if(x>val&&val<=z){
int ll=Search1(pos-1,1,0);
int len=pos-ll;
Change(ll,pos-1,1,len);
int rr=Search1(pos+1,1,1);
len=rr-pos+1;
Change(pos,rr,1,len);
arr[pos]=val;
shuchu(pos);
//
}
if(x<=val&&val>z){
int rr=Search1(pos+1,1,1);
int len=rr-pos;
Change(pos+1,rr,1,len);
int ll=Search1(pos,1,0);
len=pos-ll+1;
Change(ll,pos,1,len);
arr[pos]=val;
shuchu(pos);
}
if(x<=val&&val<=z){
arr[pos]=val;
shuchu(pos);
}
}
}
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
for(int i=1;i<N;i++){
for(int j=1;j<=i/j;j++)
{
if(i%j==0){
cnt[i]++;
if(i/j!=j) cnt[i]++;
}
}
}
//cout<<cnt[1]<<' ';
int _=1;
cin>>_;
while(_--)
solve();
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 216ms
memory: 10524kb
input:
1 5 2 4 3 2 6 1 2 5 3 5
output:
1 2 3
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 213ms
memory: 12560kb
input:
1 1 1 2000000000 1 1999999999
output:
1 1
result:
ok 2 lines
Test #3:
score: 0
Accepted
time: 284ms
memory: 25524kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160 200000 160...
result:
ok 200001 lines
Test #4:
score: 0
Accepted
time: 290ms
memory: 26928kb
input:
1 200000 200000 200001 200000 199999 199998 199997 199996 199995 199994 199993 199992 199991 199990 199989 199988 199987 199986 199985 199984 199983 199982 199981 199980 199979 199978 199977 199976 199975 199974 199973 199972 199971 199970 199969 199968 199967 199966 199965 199964 199963 199962 1999...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200001 lines
Test #5:
score: 0
Accepted
time: 258ms
memory: 24856kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
result:
ok 200001 lines
Test #6:
score: 0
Accepted
time: 217ms
memory: 12568kb
input:
2 2 2 17017 63462 2 94054 2 13504 8 8 14380 5840 34752 73602 60279 26105 44308 78318 7 8597 2 70671 6 56663 5 90093 5 96853 3 10700 1 76875 6 27325
output:
2 2 1 1 1 1 1 1 1 1 1 1
result:
ok 12 lines
Test #7:
score: 0
Accepted
time: 217ms
memory: 12576kb
input:
10 9 15 850456 510799 912572 938543 215712 758501 850577 149454 330027 7 740992 7 73826 1 993823 7 143019 8 152824 2 109975 5 151989 7 851016 3 157534 8 491512 6 987473 7 272348 3 842756 4 278214 5 707564 10 17 494099 922564 124251 422938 100551 915266 18436 74858 885629 897256 8 798574 7 49544 7 83...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 2 1 2 2 2 2 2 2 1 1 1 1 2 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
result:
ok 110 lines
Test #8:
score: 0
Accepted
time: 213ms
memory: 12568kb
input:
10 133 246 140510 608816 589575 476955 565233 554161 572604 339315 619706 665193 478181 434356 152086 642681 20634 515330 792629 985669 964199 254936 124166 33376 866759 559350 243009 210630 84226 54133 562576 188482 341088 287802 931163 132016 885704 128841 718254 917725 716410 175025 922633 18826 ...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 1010 lines
Test #9:
score: 0
Accepted
time: 213ms
memory: 12644kb
input:
10 3872 687 44064166 27154700 47734073 23232952 85900163 60570475 79562375 95316865 5283870 83145253 18727311 84521331 87003172 67383345 87258243 56070949 93690923 24354578 82428308 54239011 31728698 60725336 28686234 19515381 86019850 20774145 91634419 99792041 34779827 43899611 5776212 38860142 22...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 10010 lines
Test #10:
score: 0
Accepted
time: 304ms
memory: 14632kb
input:
10 16568 3726 108245963 1072826507 922424573 1724795997 821224456 920893777 1197351187 1750418758 475004108 473502990 1018456990 1361563534 750892494 1656602758 1227777726 25842374 1616734168 755178190 1192059348 549671897 71441917 604937525 380135847 1750880898 478060006 1256638169 469752575 429941...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200010 lines
Test #11:
score: 0
Accepted
time: 350ms
memory: 12736kb
input:
10 49420 24551 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 1...
output:
49420 10 4 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2...
result:
ok 200010 lines
Test #12:
score: 0
Accepted
time: 350ms
memory: 14860kb
input:
10 10300 2652 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 10...
output:
10300 8 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
result:
ok 200010 lines
Test #13:
score: 0
Accepted
time: 352ms
memory: 18960kb
input:
10 28101 16542 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 1...
output:
28101 24 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6...
result:
ok 200010 lines
Test #14:
score: 0
Accepted
time: 403ms
memory: 26932kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
200000 12 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 ...
result:
ok 200001 lines
Test #15:
score: 0
Accepted
time: 345ms
memory: 24820kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
200000 8 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4...
result:
ok 200001 lines
Test #16:
score: 0
Accepted
time: 358ms
memory: 25664kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
200000 16 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 ...
result:
ok 200001 lines
Test #17:
score: 0
Accepted
time: 400ms
memory: 25604kb
input:
1 200000 200000 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ...
output:
200000 56 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12 12...
result:
ok 200001 lines
Test #18:
score: 0
Accepted
time: 335ms
memory: 19052kb
input:
10 26336 1286 228421897 1791532791 425024350 1053512919 787210054 151846650 1744204584 405715098 1511878042 83024903 1407242089 1343378225 1247367760 621669758 747664439 1732435705 9687958 844692771 1240968969 764906143 1044324581 1922020674 1464231730 664066323 1878006024 1467739885 1274788859 9888...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200010 lines
Test #19:
score: 0
Accepted
time: 353ms
memory: 24872kb
input:
1 200000 200000 552669233 1251292188 1169687585 1516890055 466277000 1426615590 1143059851 1142071829 46633255 1558088860 542928463 359164571 202635756 1029280322 832566394 708829061 1474095677 566449214 146635858 1253861603 683937870 709352365 806762030 1999939073 812285263 265896499 1276432252 189...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200001 lines
Test #20:
score: 0
Accepted
time: 335ms
memory: 25068kb
input:
1 200000 200000 552861607 673549900 805593767 1944036189 1389056261 1610609908 876758842 347050569 198664362 113049720 757762667 1264295375 1176428756 1125865856 1753294004 562773552 1714895939 575397859 1626014637 991395370 1540726074 239867579 1254804878 1683281051 1534209564 1375618352 1570473629...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200001 lines
Test #21:
score: 0
Accepted
time: 313ms
memory: 16680kb
input:
10 11096 20389 438408205 15270938 230996641 1681232320 545241041 1685253793 1843021465 1669462780 1992159906 912114199 612782003 569959272 1719680595 457151167 942232746 468777690 299412181 739812247 1379139332 1027431306 336768981 1435808847 679211648 96618913 71890148 443605419 1008869721 63735332...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200010 lines
Test #22:
score: 0
Accepted
time: 336ms
memory: 24920kb
input:
1 200000 200000 553246356 1665548972 77406129 650844809 1087131134 1036730389 398226374 696968799 904491698 502726575 1517938737 1187431076 927073336 976531107 1319036922 1447265576 270662536 49012815 593295149 289804899 466462904 1106818834 1448381654 3406926 1049965008 830574518 1447578411 1107273...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok 200001 lines
Extra Test:
score: 0
Extra Test Passed