結果
問題 | No.2281 K → K-1 01 Flip |
ユーザー | magsta |
提出日時 | 2023-04-19 14:58:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,155 bytes |
コンパイル時間 | 1,636 ms |
コンパイル使用メモリ | 169,944 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-15 10:38:25 |
合計ジャッジ時間 | 6,590 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { long long N, Q; cin >> N >> Q; string S; cin >> S; vector<long long> rui_l(N, 0), rui_r(N, 0); for (int i = 0; i < N; i++) { if (i != 0) rui_l[i] = rui_l[i - 1]; if (S[i] == '0') rui_l[i] += 1; else rui_l[i] -= 1; if (i != 0) rui_r[N - i - 1] = rui_r[N - i]; if (S[N - i - 1] == '0') rui_r[N - i - 1] += 1; else rui_r[N - i - 1] -= 1; } for (int i = 0; i < Q; i++) { long long L, R, K; cin >> L >> R >> K; long long now = 0; bool flag = false; for (int i = L - 1; i < R; i++) { if (S[i] == '0') { now++; if (now >= K) flag = true; } else now = 0; } now = 0; for (int i = 0; i < N; i++) { if (S[i] == '1') { now++; if (now >= K) flag = true; } else now = 0; } if (!flag) cout << R - L + 1 << endl; else { long long sum = rui_l[N - 1]; if (L != 1) sum -= rui_l[L - 2]; if (R != N) sum -= rui_r[R]; long long amari = (sum + 1000000 * (2 * K - 1)) % (2 * K - 1); if (amari == 0) cout << 2 * (K - 1) << endl; else if (amari < K) cout << 2 * K - 2 - amari << endl; else cout << amari - 1 << endl; } } }