結果
問題 | No.2735 Demarcation |
ユーザー | 沙耶花 |
提出日時 | 2024-04-19 22:20:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,305 bytes |
コンパイル時間 | 4,627 ms |
コンパイル使用メモリ | 264,248 KB |
実行使用メモリ | 22,912 KB |
最終ジャッジ日時 | 2024-10-11 15:48:27 |
合計ジャッジ時間 | 16,238 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 95 ms
8,832 KB |
testcase_24 | AC | 165 ms
12,672 KB |
testcase_25 | WA | - |
testcase_26 | AC | 226 ms
17,280 KB |
testcase_27 | WA | - |
testcase_28 | AC | 335 ms
22,820 KB |
testcase_29 | AC | 336 ms
22,708 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 int main(){ int N; cin>>N; vector<long long> x(N); rep(i,N)cin>>x[i]; fenwick_tree<long long> F(N-1); rep(i,N-1){ if(x[i]==x[i+1])F.add(i,1); } vector<int> cnt(N+5,0); int Q; cin>>Q; rep(_,Q){ long long l,r,S; cin>>l>>r>>S; l--; if(r-l>=100){ long long t = F.sum(l,r-1); if(t<=60 && (1LL<<t)<=S){ cout<<1<<endl; continue; } else{ cout<<0<<endl; continue; } } else{ if(r-l<=61 && ((1LL<<(r-l-1)))<=S){ cout<<-1<<endl; continue; } int n = r-l; int ok = 0,ng = n+1; while(ng-ok>1){ int mid = (ok+ng)/2; vector<long long> dp(n+1,0); dp[0] = 1; rep(j,n){ int C = 0; for(int k=0;k<n;k++){ if(j+k>=n)break; if(cnt[x[l+j+k]]==0){ C++; if(C>mid)break; cnt[x[l+j+k]] = 1; } dp[j+k+1] += dp[j]; } for(int k=0;k<n;k++){ if(j+k>=n)break; cnt[x[l+j+k]] = 0; } } if(dp.back()>S)ng = mid; else ok = mid; } cout<<ok<<endl; } } return 0; }