結果
問題 |
No.608 God's Maze
|
ユーザー |
![]() |
提出日時 | 2017-12-08 10:15:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 817 bytes |
コンパイル時間 | 2,028 ms |
コンパイル使用メモリ | 195,028 KB |
最終ジャッジ日時 | 2025-01-05 04:56:56 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 65 |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1 << 30; int solve(string S, int N) { int right = N, ret = 0; for(int i = N; i >= 0; i--) { if(S[i] == '#') right = i; } 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; ++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; T = S; reverse(begin(T), end(T)); cout << min(solve(S, N - 1), solve(T, (int) S.size() - N)) << endl; }