結果
問題 | No.608 God's Maze |
ユーザー | ei1333333 |
提出日時 | 2017-12-08 10:05:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,571 bytes |
コンパイル時間 | 2,749 ms |
コンパイル使用メモリ | 219,824 KB |
実行使用メモリ | 814,132 KB |
最終ジャッジ日時 | 2024-05-07 05:21:21 |
合計ジャッジ時間 | 6,175 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 5 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 94 ms
12,672 KB |
testcase_11 | AC | 35 ms
6,944 KB |
testcase_12 | AC | 83 ms
11,904 KB |
testcase_13 | AC | 68 ms
10,112 KB |
testcase_14 | AC | 40 ms
7,552 KB |
testcase_15 | AC | 71 ms
10,112 KB |
testcase_16 | AC | 87 ms
11,776 KB |
testcase_17 | AC | 48 ms
7,936 KB |
testcase_18 | AC | 22 ms
6,940 KB |
testcase_19 | AC | 77 ms
10,624 KB |
testcase_20 | AC | 17 ms
6,940 KB |
testcase_21 | AC | 22 ms
6,944 KB |
testcase_22 | AC | 113 ms
13,056 KB |
testcase_23 | AC | 87 ms
12,416 KB |
testcase_24 | AC | 137 ms
14,848 KB |
testcase_25 | AC | 20 ms
6,940 KB |
testcase_26 | AC | 93 ms
12,544 KB |
testcase_27 | AC | 34 ms
6,944 KB |
testcase_28 | AC | 200 ms
18,944 KB |
testcase_29 | MLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1 << 30; int solve(string S, int N) { int right = -1, ret = 0; for(int i = N; i >= 0; i--) { if(S[i] == '#') right = i; } if(right == -1) return (INF); for(int i = N - 1; i >= right; i--) { S[i] = ".#"[S[i] == '.']; ++ret; } S += "."; int rest = count(begin(S), end(S), '#'); while(rest > 0) { ++right; assert(right < S.size()); ++ret; S[right] = ".#"[S[right] == '.']; if(S[right] == '.') rest--; else rest++; if(S[right - 1] == '#') { --right; ++ret; S[right] = ".#"[S[right] == '.']; if(S[right] == '.') rest--; else rest++; } } return (ret); } int main() { int N; string S, T; cin >> N; cin >> S; if(N > 20) { T = S; reverse(begin(T), end(T)); cout << min(solve(S, N - 1), solve(T, (int) S.size() - N)) << endl; return (0); } --N; queue< pair< int, string > > que; map< string, int > min_cost[S.size()]; min_cost[N][S] = 0; que.emplace(N, S); while(!que.empty()) { int idx; string s; tie(idx, s) = que.front(); que.pop(); if(count(begin(s), end(s), '#') == 0) { cout << min_cost[idx][s] << endl; break; } for(int i = -1; i <= 1; i++) { if(i == 0) continue; if(idx + i < 0 || idx + i >= S.size()) continue; string p = s; p[idx + i] = ".#"[p[idx + i] == '.']; if(min_cost[idx + i].count(p)) continue; min_cost[idx + i][p] = min_cost[idx][s] + 1; que.emplace(idx + i, p); } } }