結果

問題 No.2735 Demarcation
ユーザー kaichou243kaichou243
提出日時 2024-04-20 01:34:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 713 ms / 1,500 ms
コード長 1,446 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 209,452 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-11 20:23:21
合計ジャッジ時間 10,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 63 ms
11,008 KB
testcase_05 AC 175 ms
5,248 KB
testcase_06 AC 170 ms
9,344 KB
testcase_07 AC 642 ms
10,368 KB
testcase_08 AC 335 ms
10,368 KB
testcase_09 AC 214 ms
6,016 KB
testcase_10 AC 236 ms
7,040 KB
testcase_11 AC 33 ms
5,248 KB
testcase_12 AC 82 ms
5,248 KB
testcase_13 AC 202 ms
5,248 KB
testcase_14 AC 675 ms
8,576 KB
testcase_15 AC 509 ms
5,248 KB
testcase_16 AC 241 ms
9,472 KB
testcase_17 AC 415 ms
6,784 KB
testcase_18 AC 123 ms
5,248 KB
testcase_19 AC 477 ms
10,368 KB
testcase_20 AC 713 ms
9,984 KB
testcase_21 AC 65 ms
8,320 KB
testcase_22 AC 97 ms
10,624 KB
testcase_23 AC 32 ms
5,504 KB
testcase_24 AC 53 ms
7,040 KB
testcase_25 AC 82 ms
9,344 KB
testcase_26 AC 75 ms
8,704 KB
testcase_27 AC 66 ms
7,936 KB
testcase_28 AC 107 ms
11,008 KB
testcase_29 AC 107 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n;
	cin>>n;
	vector<int> x(n);
	for(int i=0;i<n;i++) cin>>x[i];
	vector<int> sum(n);
	for(int i=0;i<n-1;i++) sum[i+1]=sum[i]+(x[i]==x[i+1]?1:0);
	int q;
	cin>>q;
	while(q--){
	    ll l,r,s;
	    cin>>l>>r>>s;
	    --l;
	    --r;
	    if(sum[r]-sum[l]>60||(1ll<<(sum[r]-sum[l]))>s){
	        cout<<0<<"\n";
	        continue;
	    }
	    if(r-l+1<=61&&(1ll<<(r-l))<=s){
	        cout<<-1<<endl;
	        continue;
	    }
	    if(r-l+1>=100){
	        cout<<1<<"\n";
	        continue;
	    }
	    int ok=1,ng=r-l+2;
	    while(ng-ok>1){
	        int m=(ok+ng)/2;
	        unordered_map<int,int> mp;
	        int j=l,cnt=0;
	        vector<ll> dp(r-l+3);
	        bool isok=false;
	        dp[0]=1;
	        dp[1]=-1;
	        for(int i=l;i<=r;i++){
	            while(j<=r&&cnt<=m){
	                if(mp[x[j]]==0) cnt++;
	                if(cnt>m){
	                    cnt--;
	                    break;
	                }
	                mp[x[j]]++;
	                j++;
	            }
	            if(dp[i-l]>s){
	                isok=true;
	                break;
	            }
	            dp[i-l+1]+=dp[i-l]*2;
	            dp[j-l+1]-=dp[i-l];
	            mp[x[i]]--;
	            if(mp[x[i]]==0) cnt--;
	        }
	        if(isok||dp[r-l+1]>s) ng=m;
	        else ok=m;
	    }
	    cout<<ok<<"\n";
	}
}
0