結果

問題 No.2735 Demarcation
ユーザー butsurizukibutsurizuki
提出日時 2024-04-19 22:11:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 1,500 ms
コード長 1,371 bytes
コンパイル時間 4,198 ms
コンパイル使用メモリ 272,936 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-11 15:32:58
合計ジャッジ時間 10,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 67 ms
18,816 KB
testcase_05 AC 98 ms
5,248 KB
testcase_06 AC 129 ms
15,616 KB
testcase_07 AC 384 ms
17,792 KB
testcase_08 AC 241 ms
17,312 KB
testcase_09 AC 206 ms
8,704 KB
testcase_10 AC 223 ms
10,752 KB
testcase_11 AC 34 ms
6,400 KB
testcase_12 AC 75 ms
5,248 KB
testcase_13 AC 148 ms
5,248 KB
testcase_14 AC 259 ms
13,824 KB
testcase_15 AC 162 ms
5,248 KB
testcase_16 AC 134 ms
15,808 KB
testcase_17 AC 175 ms
10,624 KB
testcase_18 AC 67 ms
6,528 KB
testcase_19 AC 217 ms
17,536 KB
testcase_20 AC 284 ms
16,768 KB
testcase_21 AC 68 ms
13,440 KB
testcase_22 AC 101 ms
18,176 KB
testcase_23 AC 51 ms
7,680 KB
testcase_24 AC 102 ms
10,752 KB
testcase_25 AC 137 ms
15,360 KB
testcase_26 AC 78 ms
14,336 KB
testcase_27 AC 69 ms
12,672 KB
testcase_28 AC 204 ms
18,816 KB
testcase_29 AC 111 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>

using namespace std;

long long big=(1ll<<61);

long long op(long long a,long long b){
  return min(big,a+b);
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n;
  cin >> n;
  vector<int> a(n);
  for(auto &nx : a){cin >> nx;}

  vector<int> g(n,0);
  for(int i=1;i<n;i++){
    g[i]=g[i-1];
    if(a[i-1]==a[i]){g[i]++;}
  }

  vector<long long> dp(n+5,0);

  int q;
  cin >> q;
  while(q>0){
    q--;
    int l,r;
    long long s;
    cin >> l >> r >> s;
    l--; r--;

    int maxj=min(61,r-l);
    if((1ll<<maxj)<=s){
      cout << "-1\n"; // always <= S, so inf
      continue;
    }

    int keep=min(61,g[r]-g[l]);
    if((1ll<<keep)>s){
      cout << "0\n"; // always > S, so 0
      continue;
    }
    // cout << "wip\n";

    int ans=-1;
    for(int k=2;;k++){
      dp[l]=1;
      for(int i=l+1;i<=r+1;i++){
        dp[i]=0;
        set<int> st;
        for(int j=i-1;j>=l;j--){
          st.insert(a[j]);
          if(st.size()<=k){
            dp[i]+=dp[j];
          }
          else{break;}
          if(dp[i]>s){break;}
        }
        if(dp[i]>s){
          ans=k-1;
          break;
        }
      }
      // cerr << dp[r] << "\n";
      if(ans!=-1){break;}
    }
    cout << ans << "\n";
  }
  return 0;
}
0