結果
問題 | No.2210 equence Squence Seuence |
ユーザー | maksim |
提出日時 | 2023-02-10 22:01:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,322 bytes |
コンパイル時間 | 1,612 ms |
コンパイル使用メモリ | 176,564 KB |
実行使用メモリ | 18,184 KB |
最終ジャッジ日時 | 2024-07-07 16:16:24 |
合計ジャッジ時間 | 9,963 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
13,884 KB |
testcase_01 | AC | 6 ms
6,944 KB |
testcase_02 | AC | 7 ms
6,940 KB |
testcase_03 | AC | 789 ms
7,556 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,520 ms
9,684 KB |
testcase_06 | AC | 1,278 ms
8,364 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int32_t main()': main.cpp:52:45: warning: iteration 200003 invokes undefined behavior [-Waggressive-loop-optimizations] 52 | po[0]=1;for(int i=1;i<maxn;++i) {po[i+1]=(po[i]*base)%p;} | ~~~~~~~^~~~~~~~~~~~~~~ main.cpp:52:26: note: within this loop 52 | po[0]=1;for(int i=1;i<maxn;++i) {po[i+1]=(po[i]*base)%p;} | ~^~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #ifdef LOCAL #define __int128 long long #endif // LOCAL const int p=((int) 1e14)+7; const int base=363621; const int maxn=2e5+5; __int128 po[maxn]; __int128 ha[maxn];vector<int> a; __int128 get(int i,int j) { return ((ha[j]-po[j-i]*ha[i])%p+p)%p; } bool cmp1(int i,int j) { if(get(i,j)==get(i+1,j+1)) { return true; } int low=i;int up=j; while(up-low>1) { int mid=(low+up)/2; if(get(i,mid)==get(i+1,mid+1)) low=mid; else up=mid; } return a[low]>a[low+1]; } bool cmp(int i,int j) { if(i==j) return false; if(i>j) return !cmp1(j,i); if(get(i,j)==get(i+1,j+1)) { return false; } int low=i;int up=j; while(up-low>1) { int mid=(low+up)/2; if(get(i,mid)==get(i+1,mid+1)) low=mid; else up=mid; } return a[low]>a[low+1]; } int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); po[0]=1;for(int i=1;i<maxn;++i) {po[i+1]=(po[i]*base)%p;} int n,k;cin>>n>>k;a.resize(n); for(int i=0;i<n;++i) {cin>>a[i];ha[i+1]=(ha[i]*base+a[i]);} vector<int> v(n);iota(v.begin(),v.end(),0); sort(v.begin(),v.end(),cmp); a.erase(a.begin()+v[k-1]); for(int x:a) cout<<x<<' '; return 0; }