結果
問題 | No.1211 円環はお断り |
ユーザー | vjudge1 |
提出日時 | 2024-09-07 22:40:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,521 bytes |
コンパイル時間 | 2,300 ms |
コンパイル使用メモリ | 202,892 KB |
実行使用メモリ | 43,636 KB |
最終ジャッジ日時 | 2024-09-07 22:40:35 |
合計ジャッジ時間 | 27,861 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
7,524 KB |
testcase_01 | AC | 3 ms
7,524 KB |
testcase_02 | AC | 2 ms
7,524 KB |
testcase_03 | AC | 2 ms
7,524 KB |
testcase_04 | AC | 2 ms
7,648 KB |
testcase_05 | AC | 2 ms
7,524 KB |
testcase_06 | AC | 2 ms
7,524 KB |
testcase_07 | AC | 2 ms
7,536 KB |
testcase_08 | AC | 2 ms
7,524 KB |
testcase_09 | AC | 3 ms
7,532 KB |
testcase_10 | AC | 3 ms
7,656 KB |
testcase_11 | AC | 3 ms
7,532 KB |
testcase_12 | AC | 3 ms
7,656 KB |
testcase_13 | AC | 592 ms
24,724 KB |
testcase_14 | WA | - |
testcase_15 | AC | 804 ms
29,192 KB |
testcase_16 | AC | 1,449 ms
41,964 KB |
testcase_17 | AC | 85 ms
9,848 KB |
testcase_18 | AC | 707 ms
28,940 KB |
testcase_19 | AC | 89 ms
9,848 KB |
testcase_20 | AC | 114 ms
11,804 KB |
testcase_21 | AC | 117 ms
11,800 KB |
testcase_22 | AC | 635 ms
24,756 KB |
testcase_23 | AC | 757 ms
28,388 KB |
testcase_24 | AC | 396 ms
18,332 KB |
testcase_25 | AC | 15 ms
7,692 KB |
testcase_26 | AC | 901 ms
31,324 KB |
testcase_27 | AC | 402 ms
19,948 KB |
testcase_28 | AC | 917 ms
32,560 KB |
testcase_29 | AC | 701 ms
27,012 KB |
testcase_30 | AC | 1,025 ms
33,452 KB |
testcase_31 | AC | 357 ms
18,272 KB |
testcase_32 | AC | 1,249 ms
38,864 KB |
testcase_33 | AC | 1,520 ms
41,980 KB |
testcase_34 | AC | 1,533 ms
42,876 KB |
testcase_35 | AC | 1,446 ms
43,028 KB |
testcase_36 | AC | 1,468 ms
43,636 KB |
testcase_37 | AC | 1,453 ms
40,744 KB |
testcase_38 | AC | 1,439 ms
41,860 KB |
testcase_39 | AC | 1,484 ms
42,876 KB |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
7,528 KB |
testcase_42 | AC | 2 ms
7,528 KB |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; #define fi first #define sc second #define pii pair<int,int> #define pb push_back const int maxn=6e5+10; int n,k,a[maxn],s[maxn],nxt[maxn][20],f[maxn]; 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'); } 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; bool chk(int x) { for(int i=1;i<=n*2;i++) { nxt[i][0]=lower_bound(s+1,s+n*2+1,s[i]+x)-s; } for(int i=0;i<=19;i++) nxt[n*2+1][i]=n*2+1; for(int i=1;i<=19;i++) { for(int j=1;j<=n*2;j++) nxt[j][i]=nxt[nxt[j][i-1]][i-1]; } for(int i=1;i<=n;i++) { nxt[n*2][0]=n*2; int now=i; for(int j=0;j<=19;j++) { if(k&(1<<j)) now=nxt[now][j]; } if(now-i<=n) return 1; } return 0; } void solve() { cin>>n>>k; for(int i=1;i<=n;i++) cin>>a[i],a[i+n]=a[i]; for(int i=1;i<=n*2;i++) s[i]=s[i-1]+a[i]; int l=0,r=1e10,mid=0; while(l<=r) mid=(l+r)>>1,(chk(mid)?l=mid+1:r=mid-1); l--,cout<<l<<" "; for(int i=1;i<=n*2;i++) { nxt[i][0]=lower_bound(s+1,s+n*2+1,s[i]+l)-s; } for(int i=0;i<=19;i++) nxt[n*2+1][i]=n*2+1; for(int i=1;i<=19;i++) { for(int j=1;j<=n*2;j++) nxt[j][i]=nxt[nxt[j][i-1]][i-1]; } int res=0; for(int i=1;i<=n;i++) { nxt[n*2][0]=n*2; int now=i; for(int j=0;j<=19;j++) { if(k&(1<<j)) now=nxt[now][j]; } res+=(now-i>n); } // cout<<res<<endl; } signed main() { ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); int t=1; // cin>>t; while(t--) solve(); return 0; }