結果

問題 No.2890 Chiffon
ユーザー RubikunRubikun
提出日時 2024-09-13 21:45:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,321 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 206,552 KB
実行使用メモリ 183,040 KB
最終ジャッジ日時 2024-09-13 21:46:11
合計ジャッジ時間 25,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_09 AC 3 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 3 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 512 ms
182,912 KB
testcase_23 AC 899 ms
101,248 KB
testcase_24 AC 600 ms
80,256 KB
testcase_25 AC 1,623 ms
155,264 KB
testcase_26 AC 1,317 ms
164,480 KB
testcase_27 AC 55 ms
10,496 KB
testcase_28 AC 108 ms
20,352 KB
testcase_29 AC 864 ms
88,704 KB
testcase_30 AC 1,641 ms
176,768 KB
testcase_31 AC 1,379 ms
154,752 KB
testcase_32 AC 45 ms
13,056 KB
testcase_33 AC 468 ms
182,912 KB
testcase_34 AC 461 ms
182,912 KB
testcase_35 AC 464 ms
182,912 KB
testcase_36 AC 459 ms
182,912 KB
testcase_37 AC 463 ms
182,912 KB
testcase_38 AC 463 ms
182,784 KB
testcase_39 AC 464 ms
182,912 KB
testcase_40 AC 462 ms
182,784 KB
testcase_41 AC 462 ms
182,912 KB
testcase_42 AC 467 ms
183,040 KB
testcase_43 AC 489 ms
182,912 KB
testcase_44 AC 473 ms
182,784 KB
testcase_45 AC 474 ms
182,912 KB
testcase_46 AC 502 ms
182,912 KB
testcase_47 AC 478 ms
182,912 KB
testcase_48 AC 483 ms
182,912 KB
testcase_49 AC 482 ms
182,912 KB
testcase_50 AC 473 ms
182,876 KB
testcase_51 AC 504 ms
182,912 KB
testcase_52 AC 476 ms
182,912 KB
testcase_53 TLE -
testcase_54 AC 842 ms
182,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")

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;
}


0