結果
問題 | No.2890 Chiffon |
ユーザー | Rubikun |
提出日時 | 2024-09-13 21:40:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,232 bytes |
コンパイル時間 | 2,316 ms |
コンパイル使用メモリ | 204,016 KB |
実行使用メモリ | 182,912 KB |
最終ジャッジ日時 | 2024-09-13 21:41:29 |
合計ジャッジ時間 | 26,885 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 503 ms
182,912 KB |
testcase_23 | AC | 940 ms
101,248 KB |
testcase_24 | AC | 615 ms
80,256 KB |
testcase_25 | AC | 1,688 ms
155,392 KB |
testcase_26 | AC | 1,386 ms
164,736 KB |
testcase_27 | AC | 55 ms
10,240 KB |
testcase_28 | AC | 107 ms
20,224 KB |
testcase_29 | AC | 919 ms
88,704 KB |
testcase_30 | AC | 1,690 ms
176,896 KB |
testcase_31 | AC | 1,408 ms
154,624 KB |
testcase_32 | AC | 48 ms
13,184 KB |
testcase_33 | AC | 472 ms
182,912 KB |
testcase_34 | AC | 481 ms
182,912 KB |
testcase_35 | AC | 492 ms
182,912 KB |
testcase_36 | AC | 484 ms
182,784 KB |
testcase_37 | AC | 468 ms
182,912 KB |
testcase_38 | AC | 467 ms
182,912 KB |
testcase_39 | AC | 471 ms
182,784 KB |
testcase_40 | AC | 563 ms
182,912 KB |
testcase_41 | AC | 513 ms
182,912 KB |
testcase_42 | AC | 482 ms
182,784 KB |
testcase_43 | AC | 498 ms
182,784 KB |
testcase_44 | AC | 487 ms
182,912 KB |
testcase_45 | AC | 553 ms
182,912 KB |
testcase_46 | AC | 484 ms
182,912 KB |
testcase_47 | AC | 537 ms
182,784 KB |
testcase_48 | AC | 497 ms
182,912 KB |
testcase_49 | AC | 512 ms
182,784 KB |
testcase_50 | AC | 523 ms
182,912 KB |
testcase_51 | AC | 537 ms
182,912 KB |
testcase_52 | AC | 522 ms
182,912 KB |
testcase_53 | TLE | - |
testcase_54 | AC | 881 ms
182,784 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define vi vector<int> #define vl vector<ll> #define vii vector<pair<int,int>> #define vll vector<pair<ll,ll>> #define vvi vector<vector<int>> #define vvl vector<vector<ll>> #define vvii vector<vector<pair<int,int>>> #define vvll vector<vector<pair<ll,ll>>> #define vst vector<string> #define pii pair<int,int> #define pll pair<ll,ll> #define pb push_back #define all(x) (x).begin(),(x).end() #define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end()) #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=1000005,INF=15<<26; ll db[23][MAX]; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); ll N,K;cin>>N>>K; vl NG(2*N+3); for(int i=0;i<K;i++){ int x;cin>>x;x--; NG[x]=true; } ll le=0,ri=N/K+3; while(ri-le>1){ ll mid=(le+ri)/2; for(int t=0;t<22;t++) for(int i=0;i<2*N;i++) db[t][i]=-1; int j=1; int cn=0; for(int i=1;i<2*N;i+=2){ while(j-i<2*mid||cn==0){ if(NG[(j+1)%(2*N)]) cn++; j+=2; } db[0][i]=j-i; //cout<<mid<<" "<<j-i<<endl; if(NG[i+1]) cn--; } for(int t=1;t<=20;t++){ for(int i=1;i<2*N;i+=2){ int y=(i+db[t-1][i])%(2*N); db[t][i]=db[t-1][i]+db[t-1][y]; } } bool ok=false; for(int i=1;i<2*N;i+=2){ ll now=i,sum=0; for(int t=20;t>=0;t--){ if(K&(1<<t)){ sum+=db[t][now]; now=(now+db[t][now])%(2*N); } if(sum>2*N) break; } if(sum<=2*N) ok=true; } if(ok) le=mid; else ri=mid; } cout<<2*le<<endl; }