結果
問題 | No.2566 美しい整数列 |
ユーザー | tails |
提出日時 | 2023-12-14 12:02:54 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 1,161 bytes |
コンパイル時間 | 876 ms |
コンパイル使用メモリ | 27,648 KB |
実行使用メモリ | 13,656 KB |
最終ジャッジ日時 | 2024-09-27 05:42:19 |
合計ジャッジ時間 | 2,906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 59 ms
13,144 KB |
testcase_05 | AC | 61 ms
13,656 KB |
testcase_06 | AC | 9 ms
7,896 KB |
testcase_07 | AC | 9 ms
8,020 KB |
testcase_08 | AC | 8 ms
7,772 KB |
testcase_09 | AC | 9 ms
10,072 KB |
testcase_10 | AC | 9 ms
8,028 KB |
testcase_11 | AC | 14 ms
11,608 KB |
testcase_12 | AC | 14 ms
11,608 KB |
testcase_13 | AC | 16 ms
11,480 KB |
testcase_14 | AC | 14 ms
11,604 KB |
testcase_15 | AC | 14 ms
11,608 KB |
testcase_16 | AC | 15 ms
11,612 KB |
testcase_17 | AC | 16 ms
11,868 KB |
testcase_18 | AC | 16 ms
12,124 KB |
testcase_19 | AC | 12 ms
10,324 KB |
testcase_20 | AC | 14 ms
11,480 KB |
testcase_21 | AC | 15 ms
11,736 KB |
testcase_22 | AC | 11 ms
9,940 KB |
testcase_23 | AC | 14 ms
10,968 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:59: warning: implicit declaration of function ‘write’ [-Wimplicit-function-declaration] 8 | #define wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);}) | ^~~~~ main.c:63:9: note: in expansion of macro ‘wt1’ 63 | wt1(g-e); | ^~~ main.c:64:9: warning: implicit declaration of function ‘_exit’ [-Wimplicit-function-declaration] 64 | _exit(0); | ^~~~~ main.c:64:9: warning: incompatible implicit declaration of built-in function ‘_exit’ [-Wbuiltin-declaration-mismatch]
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rd_init() char*rp=({char*mmap();mmap(0l,1l<<25,1,2,0,0ll);}) #define rd() ({int _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;}) #define rd_signed() ({int _s=*rp=='-'&&++rp,_v=rd();_s?-_v:_v;}) #define wt(v) ({ulong _z=v;do*--wp=_z%10+48;while(_z/=10);}) #define wt1(v) ({char wbuf[64],*wp=wbuf+sizeof wbuf;wt(v);write(1,wp,wbuf+sizeof wbuf-wp);}) #define rep(v,e) for(typeof(e) v=0;v<e;++v) #define chmax(v,a) (v=v>=a?v:a) typedef unsigned long ulong; #define HASH_BITS 18 #define HASH_MASK ((1<<HASH_BITS)-1) long hash[1<<HASH_BITS]; int hash_get(long x){ int h=x&HASH_MASK; while(1){ if(hash[h]==0){ hash[h]=x; return h; } if(hash[h]==x){ return h; } h=h+1&HASH_MASK; } } int a[200000]; int b[200000]; long f[1<<HASH_BITS]; int main(){ rd_init(); int n=rd(); int m=rd(); rep(i,n){ a[i]=rd_signed(); } rep(i,m){ b[i]=rd_signed(); } long d=1234; long g=0; int j=0; rep(i,n){ int c=rd(); g+=c; int h=hash_get(d-a[i]); f[h]+=c; d+=b[j]; if(++j==m){ j=0; } } long e=0; rep(h,1<<HASH_BITS){ chmax(e,f[h]); } wt1(g-e); _exit(0); }