結果
問題 | No.1211 円環はお断り |
ユーザー | vjudge1 |
提出日時 | 2024-09-07 22:26:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,816 bytes |
コンパイル時間 | 2,348 ms |
コンパイル使用メモリ | 205,656 KB |
実行使用メモリ | 73,344 KB |
最終ジャッジ日時 | 2024-09-07 22:26:22 |
合計ジャッジ時間 | 14,270 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
46,540 KB |
testcase_01 | AC | 11 ms
46,544 KB |
testcase_02 | AC | 11 ms
46,544 KB |
testcase_03 | AC | 10 ms
46,544 KB |
testcase_04 | AC | 11 ms
46,544 KB |
testcase_05 | AC | 11 ms
46,536 KB |
testcase_06 | AC | 11 ms
48,580 KB |
testcase_07 | AC | 11 ms
46,544 KB |
testcase_08 | AC | 11 ms
46,668 KB |
testcase_09 | AC | 11 ms
48,456 KB |
testcase_10 | AC | 11 ms
46,544 KB |
testcase_11 | AC | 11 ms
46,540 KB |
testcase_12 | AC | 11 ms
46,544 KB |
testcase_13 | AC | 258 ms
65,372 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 489 ms
71,172 KB |
testcase_17 | AC | 45 ms
48,808 KB |
testcase_18 | WA | - |
testcase_19 | AC | 48 ms
50,860 KB |
testcase_20 | WA | - |
testcase_21 | AC | 59 ms
52,892 KB |
testcase_22 | AC | 269 ms
64,416 KB |
testcase_23 | AC | 319 ms
66,568 KB |
testcase_24 | AC | 181 ms
57,684 KB |
testcase_25 | AC | 20 ms
46,472 KB |
testcase_26 | AC | 357 ms
71,432 KB |
testcase_27 | AC | 179 ms
59,388 KB |
testcase_28 | AC | 357 ms
70,564 KB |
testcase_29 | AC | 300 ms
68,344 KB |
testcase_30 | AC | 385 ms
71,700 KB |
testcase_31 | AC | 155 ms
55,536 KB |
testcase_32 | AC | 449 ms
71,684 KB |
testcase_33 | AC | 521 ms
71,060 KB |
testcase_34 | AC | 551 ms
71,244 KB |
testcase_35 | AC | 513 ms
70,764 KB |
testcase_36 | AC | 518 ms
70,644 KB |
testcase_37 | AC | 511 ms
71,524 KB |
testcase_38 | AC | 493 ms
71,604 KB |
testcase_39 | AC | 501 ms
73,344 KB |
testcase_40 | WA | - |
testcase_41 | AC | 10 ms
46,544 KB |
testcase_42 | AC | 11 ms
46,408 KB |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; const int N=4e5+10,M=20,INF=0x3f3f3f3f,mod=998244353; int n,k,a[N],nxt[M][N]; namespace Fast_IO { static char buf[1000000],*paa=buf,*pd=buf,out[10000000];int length=0; #define getchar() paa==pd&&(pd=(paa=buf)+fread(buf,1,1000000,stdin),paa==pd)?EOF:*paa++ inline int read() { int x(0),t(1);char fc(getchar()); while(!isdigit(fc)){if(fc=='-') t=-1;fc=getchar();} while(isdigit(fc)) x=(x<<1)+(x<<3)+(fc^48),fc=getchar(); return x*t; } inline void flush(){fwrite(out,1,length,stdout);length=0;} inline void put(char c){if(length==9999999) flush();out[length++]=c;} inline void put(string s){for(char c:s) put(c);} inline void print(int x) { if(x<0) put('-'),x=-x; if(x>9) print(x/10); put(x%10+'0'); } inline bool chk(char c) { return !(c>='a'&&c<='z'||c>='A'&&c<='Z'||c>='0'&&c<='9'||c=='.'||c=='#'); } inline bool ck(char c) { return c!='\n'&&c!='\r'&&c!=-1&&c!=' '; } inline void rd(char s[],int&n) { s[++n]=getchar(); while(chk(s[n])) s[n]=getchar(); while(ck(s[n])) s[++n]=getchar(); n--; } } using namespace Fast_IO; inline bool check(int x) { for(int i=0;i<=2*n;i++) nxt[0][i]=lower_bound(a+1,a+1+(2*n),a[i]+x)-a; for(int k=0;k<M;k++) nxt[k][2*n+1]=2*n+1; for(int k=0;k+1<M;k++) for(int i=0;i<=2*n;i++) nxt[k+1][i]=nxt[k][nxt[k][i]]; for(int i=1,j;i<=n;i++) { nxt[0][2*n]=2*n+1;j=i; for(int l=0;l<M;l++) if((k>>l)&1) j=nxt[l][j]; if(j-i<=n) return true; }return false; } inline void solve() { n=read(),k=read();for(int i=1;i<=n;i++) a[i+n]=a[i]=read(); for(int i=1;i<=n<<1;i++) a[i]+=a[i-1];int l=0,r=INF,ans=0; while(l<=r) { int mid=(l+r)>>1; if(check(mid)) ans=mid,l=mid+1; else r=mid-1; }print(ans); } signed main() { int T=1;while(T--) solve(); genshin:;flush();return 0; }