結果
問題 | No.910 素数部分列 |
ユーザー | square1001 |
提出日時 | 2019-10-18 21:36:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 980 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 73,464 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-06-25 15:09:47 |
合計ジャッジ時間 | 3,214 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,144 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | TLE | - |
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 | -- | - |
ソースコード
#include <string> #include <vector> #include <iostream> #include <algorithm> using namespace std; int solve(string str) { int n = str.size(); vector<bool> used(n); int ans = 0; int l = 0, r = n - 1; while (true) { while (l != n && str[l] == '9') ++l; while (r != -1 && str[r] == '1') --r; if (l >= r) break; used[l] = true, used[r] = true; ++ans; } l = 0, r = n - 1; while (true) { while (l != n && (used[l] || str[l] == '9')) ++l; while (l != n && (used[l] || str[l] == '9')) ++l; while (r != -1 && (used[r] || str[r] == '1')) --r; if (l >= r) break; used[r] = true; ++ans; } int remc = 0; for (int i = 0; i < n; ++i) { if (!used[i] && str[i] == '1') ++remc; } ans += remc / 2; return ans; } int main() { int n; string s; cin >> n >> s; string str; int ans = 0; for (int i = 0; i < s.size(); ++i) { if (s[i] == '1' || s[i] == '9') { str += s[i]; } else { ++ans; } } ans += solve(str); cout << ans << endl; return 0; }