結果
問題 | No.1913 Periodic Comparison |
ユーザー | tails |
提出日時 | 2022-04-25 14:13:36 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 1,473 bytes |
コンパイル時間 | 1,099 ms |
コンパイル使用メモリ | 34,688 KB |
実行使用メモリ | 11,576 KB |
最終ジャッジ日時 | 2024-06-27 09:37:34 |
合計ジャッジ時間 | 8,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 12 ms
6,528 KB |
testcase_09 | AC | 24 ms
11,136 KB |
testcase_10 | AC | 13 ms
8,420 KB |
testcase_11 | AC | 26 ms
11,008 KB |
testcase_12 | AC | 13 ms
9,572 KB |
testcase_13 | AC | 11 ms
6,016 KB |
testcase_14 | AC | 23 ms
9,600 KB |
testcase_15 | AC | 24 ms
11,008 KB |
testcase_16 | AC | 23 ms
10,464 KB |
testcase_17 | AC | 12 ms
6,528 KB |
testcase_18 | AC | 11 ms
6,144 KB |
testcase_19 | AC | 26 ms
11,008 KB |
testcase_20 | AC | 16 ms
10,472 KB |
testcase_21 | AC | 25 ms
11,136 KB |
testcase_22 | AC | 11 ms
8,164 KB |
testcase_23 | AC | 9 ms
5,376 KB |
testcase_24 | AC | 26 ms
11,008 KB |
testcase_25 | AC | 13 ms
9,824 KB |
testcase_26 | AC | 21 ms
9,600 KB |
testcase_27 | AC | 12 ms
6,272 KB |
testcase_28 | AC | 13 ms
6,528 KB |
testcase_29 | AC | 27 ms
11,008 KB |
testcase_30 | AC | 22 ms
10,340 KB |
testcase_31 | AC | 9 ms
5,376 KB |
testcase_32 | AC | 9 ms
5,504 KB |
testcase_33 | AC | 12 ms
6,272 KB |
testcase_34 | AC | 26 ms
11,008 KB |
testcase_35 | AC | 26 ms
11,108 KB |
testcase_36 | AC | 13 ms
9,832 KB |
testcase_37 | AC | 24 ms
11,008 KB |
testcase_38 | AC | 4 ms
6,940 KB |
testcase_39 | AC | 3 ms
5,376 KB |
testcase_40 | AC | 13 ms
8,064 KB |
testcase_41 | AC | 18 ms
11,364 KB |
testcase_42 | AC | 14 ms
11,576 KB |
コンパイルメッセージ
main.c: In function 'mkwd': main.c:16:20: warning: multi-character character constant [-Wmultichar] 16 | unsigned v='0000'; | ^~~~~~ main.c: In function 'dame': main.c:42:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 42 | write(1,"-1",2); | ^~~~~ main.c:43:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 43 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;}) #define wt(v) {ulong _z=v;do*--wp=_z%10+48;while(_z/=10);} #define rep(v,e) for(long v=0;v<e;++v) #define rrep(v,e) for(long v=e;v--;) typedef unsigned long ulong; char wbuf[1<<25]; unsigned wd[10000]; char wdlz[10000]; void mkwd(){ unsigned v='0000'; long i=0; rep(a,10){ rep(b,10){ rep(c,10){ rep(d,10){ wd[i++]=v; v+=1<<24; } v+=(1<<16)-(10<<24); } v+=(1<<8)-(10<<16); } v+=(1<<0)-(10<<8); } rep(j,1000) wdlz[j]=1; rep(j,100) wdlz[j]=2; rep(j,10) wdlz[j]=3; } int x[200000]; int a[200000]; int v[1000001]; int q[0x40000]; void dame(){ write(1,"-1",2); _exit(0); } int main(){ mkwd(); long n; { char*mmap(); char*rp=mmap(0l,1l<<25,1,2,0,0ll); n=rd(); rep(i,n) x[i]=rd(); rep(i,n){ long y=rd(); if(v[y]) dame(); v[y]=~i; } } { long qr=0,qw=n; rrep(t,1000001){ if(qr==qw) dame(); long u=~q[qr++&0x3ffff]; if(v[t]){ if(u>=0) dame(); u=~v[t]; } if(u>=0&&!x[u]){ a[u]=t; } else{ if(u>=0){ --x[u]; } q[qw++&0x3ffff]=~u; } } if(qr!=qw) dame(); } { char*wp=wbuf+sizeof wbuf; rrep(i,n){ *--wp=' '; unsigned v=a[i]; if(v>=10000){ wp-=4; *(unsigned*)wp=wd[v%10000]; v/=10000; } wp-=4; *(unsigned*)wp=wd[v]; wp+=wdlz[v]; } write(1,wp,wbuf+sizeof wbuf-wp); } _exit(0); }