結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | iqueue02 |
提出日時 | 2020-07-09 22:15:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 785 bytes |
コンパイル時間 | 2,036 ms |
コンパイル使用メモリ | 201,736 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 13:34:18 |
合計ジャッジ時間 | 2,889 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 5 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,816 KB |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 3 ms
6,820 KB |
testcase_20 | AC | 3 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef long double ld; typedef pair<int,int> P; const string good = "good"; const string problem = "problem"; constexpr int INF = 2e9; int main() { int t; cin >> t; while (t--) { string s; cin >> s; int n = s.size(); int res = INF; for (int i = 0; i <= n - 11; i++) { int add1 = 0; for (int j = 0; j < 4; j++) add1 += (s[i + j] != good[j]); for (int j = i + 4; j <= n - 7; j++) { int add2 = 0; for (int k = 0; k < 7; k++) add2 += (s[j + k] != problem[k]); res = min(res, add1 + add2); } } //cout << "ans "; cout << res << endl; } return 0; }