結果
問題 | No.2592 おでぶなおばけさん 2 |
ユーザー | nu50218 |
提出日時 | 2023-12-10 13:00:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,674 bytes |
コンパイル時間 | 2,432 ms |
コンパイル使用メモリ | 203,984 KB |
実行使用メモリ | 13,884 KB |
最終ジャッジ日時 | 2024-09-27 09:08:47 |
合計ジャッジ時間 | 9,127 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 29 ms
6,940 KB |
testcase_02 | AC | 96 ms
6,940 KB |
testcase_03 | AC | 41 ms
6,940 KB |
testcase_04 | AC | 58 ms
6,940 KB |
testcase_05 | AC | 90 ms
6,940 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; // TLE(を期待する解法) // 基本的な解法 // 各クエリについて、はじめの合計を B = 0 として // a_i = a_l, a_{l + 1}, ..., a_{r-1} に対して以下を順に行う。 // 1. a_i を B に加える。 ← この時点で B % k != 0 のとき、式の形から S != 0 が確定する。すぐに Yes を出力する。 // 2. B を k で割る。 // 最終的に B + a_r != 0 かどうかで判定できる。 // 自明テストケース対策 // a_l = ... = a_r = 0 が嫌なケースなので、全部 0 だったら No を返す。 int main() { ll n, q, k; cin >> n >> q >> k; vector<ll> a(n); for (auto& x : a) { cin >> x; } vector<ll> zero_accumulated(n, 0); zero_accumulated[0] = (a[0] == 0 ? 1 : 0); for (int i = 1; i < n; i++) { zero_accumulated[i] = zero_accumulated[i - 1] + (a[i] == 0 ? 1 : 0); } for (int _ = 0; _ < q; _++) { int l, r; cin >> l >> r; l--; r--; // 全部 0 のときはすぐに No const int zero_num = zero_accumulated[r] - (l > 0 ? zero_accumulated[l - 1] : 0); if (zero_num == r - l + 1) { cout << "No" << endl; continue; } // 全部 0 ではないとき bool Yes = false; ll B = 0; for (int i = l; i < r; i++) { B += a[i]; if (B % k != 0) { Yes = true; break; } B /= k; } Yes |= (B + a[r] != 0); cout << (Yes ? "Yes" : "No") << endl; } }