結果
問題 |
No.608 God's Maze
|
ユーザー |
![]() |
提出日時 | 2017-12-08 08:55:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 2,050 ms |
コンパイル使用メモリ | 196,392 KB |
最終ジャッジ日時 | 2025-01-05 04:54:32 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 54 WA * 11 |
ソースコード
#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) { S[right] = ".#"[S[right] == '.']; if(S[right] == '.') rest--; else rest++; ++right; ++ret; if(S[right - 1] == '#') { S[right] = ".#"[S[right] == '.']; if(S[right] == '.') rest--; else rest++; ++ret; --right; } } return (ret); } int main() { int N; string S, T; cin >> N; cin >> S; T = S; reverse(begin(T), end(T)); cout << min(solve(S, N - 1), solve(T, (int) S.size() - N)) << endl; }