結果

問題 No.2890 Chiffon
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 21:57:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 4,703 ms
コンパイル使用メモリ 263,404 KB
実行使用メモリ 30,064 KB
最終ジャッジ日時 2024-09-13 21:59:01
合計ジャッジ時間 26,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,944 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 3 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 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 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 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 TLE -
testcase_23 AC 1,165 ms
14,868 KB
testcase_24 AC 878 ms
12,580 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 70 ms
5,376 KB
testcase_28 AC 182 ms
5,376 KB
testcase_29 AC 997 ms
13,516 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 100 ms
5,376 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL
vector<long long> merge(vector<long long> &a,vector<long long> &b){
	vector<long long> ret(a.size());
	rep(i,a.size()){
		int to = i + a[i];
		to %= a.size();
		ret[i] = a[i] + b[to];
		
	}
	return ret;
}
int main(){
	
	long long N,K;
	cin>>N>>K;
	N*=2;
	N/=2;
	vector<long long> a(N);
	rep(i,K){
		int t;
		cin>>t;
		t--;
		a[t/2]++;
	}
	rep(i,N)a.push_back(a[i]);
	vector<int> nxt(N);
	{
		int last = -1;
		for(int i=N*2-1;i>=0;i--){
			if(a[i])last = i;
			if(last!=-1)nxt[i%N] = last-i+1;
		}
	}
	a.insert(a.begin(),0);
	rep(i,a.size()-1){
		a[i+1]+=a[i];
	}
	int ok = 1,ng = N;
	while(ng-ok>1){
		int mid = (ok+ng)/2;
		
		vector<long long> dp(N);
		rep(i,N){
			int t = a[i+mid] - a[i];
			
			dp[i] = max(nxt[i],mid);
			
		}

		vector<long long> cur(N,0);
		rep(i,19){
			if((K>>i)&1)cur = merge(cur,dp);
			dp= merge(dp,dp);
		}
		long long mini = Inf64;
		rep(i,N){
			if(cur[i]!=-1){
				mini = min(mini,cur[i]);
			}
		}
		
		if(mini<=N)ok = mid;
		else ng = mid;
	}
	cout<<ok*2<<endl;
	return 0;
	
}
0