結果
問題 | No.2735 Demarcation |
ユーザー | 👑 emthrm |
提出日時 | 2024-04-20 03:02:26 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 226 ms / 1,500 ms |
コード長 | 1,820 bytes |
コンパイル時間 | 3,385 ms |
コンパイル使用メモリ | 257,264 KB |
実行使用メモリ | 11,076 KB |
最終ジャッジ日時 | 2024-10-11 21:56:30 |
合計ジャッジ時間 | 7,807 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 62 ms
11,076 KB |
testcase_05 | AC | 50 ms
6,816 KB |
testcase_06 | AC | 102 ms
9,460 KB |
testcase_07 | AC | 226 ms
10,496 KB |
testcase_08 | AC | 155 ms
10,336 KB |
testcase_09 | AC | 117 ms
6,820 KB |
testcase_10 | AC | 134 ms
7,040 KB |
testcase_11 | AC | 27 ms
6,816 KB |
testcase_12 | AC | 37 ms
6,816 KB |
testcase_13 | AC | 52 ms
6,816 KB |
testcase_14 | AC | 190 ms
8,748 KB |
testcase_15 | AC | 107 ms
6,820 KB |
testcase_16 | AC | 113 ms
9,392 KB |
testcase_17 | AC | 122 ms
6,820 KB |
testcase_18 | AC | 47 ms
6,816 KB |
testcase_19 | AC | 169 ms
10,460 KB |
testcase_20 | AC | 211 ms
9,888 KB |
testcase_21 | AC | 64 ms
8,448 KB |
testcase_22 | AC | 95 ms
10,692 KB |
testcase_23 | AC | 32 ms
6,816 KB |
testcase_24 | AC | 52 ms
7,040 KB |
testcase_25 | AC | 81 ms
9,332 KB |
testcase_26 | AC | 75 ms
8,832 KB |
testcase_27 | AC | 64 ms
7,808 KB |
testcase_28 | AC | 103 ms
11,028 KB |
testcase_29 | AC | 104 ms
10,888 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 998244353; // constexpr int MOD = 1000000007; constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1}; constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}; constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << fixed << setprecision(20); } } iosetup; int main() { constexpr int L = 87; int n; cin >> n; vector<int> x(n); for (int& x_i : x) cin >> x_i; vector<int> v(n, 0); FOR(i, 1, n) v[i] = v[i - 1] + (x[i] == x[i - 1]); int q; cin >> q; while (q--) { int l, r; ll s; cin >> l >> r >> s; --l; --r; if (r - l <= 60 && (1LL << (r - l)) <= s) { cout << "-1\n"; } else if (const int adj = v[r] - v[l]; adj > 60 || (1LL << adj) > s) { cout << 0 << '\n'; } else if (r - l + 1 > L) { cout << 1 << '\n'; } else { int ans = 1; for (; ; ++ans) { vector<__int128> dp(r - l + 2, 0); dp[0] = 1; map<int, int> num; for (int i = l, j = l; i <= r; ++i) { ++num[x[i]]; for (; num.size() > ans + 1; ++j) { if (--num[x[j]] == 0) num.erase(x[j]); } FOR(x, j, i + 1) dp[i - l + 1] += dp[x - l]; } if (dp[r - l + 1] > s) break; } cout << ans << '\n'; } } return 0; }