結果
問題 | No.348 カゴメカゴメ |
ユーザー | mamekin |
提出日時 | 2016-05-19 10:31:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 102 ms / 2,000 ms |
コード長 | 2,920 bytes |
コンパイル時間 | 1,349 ms |
コンパイル使用メモリ | 118,076 KB |
実行使用メモリ | 12,032 KB |
最終ジャッジ日時 | 2024-10-11 01:02:49 |
合計ジャッジ時間 | 4,643 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
7,808 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 102 ms
12,032 KB |
testcase_03 | AC | 95 ms
9,344 KB |
testcase_04 | AC | 3 ms
6,824 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 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 | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 4 ms
6,816 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 75 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 94 ms
6,816 KB |
testcase_24 | AC | 93 ms
6,820 KB |
testcase_25 | AC | 94 ms
6,816 KB |
testcase_26 | AC | 96 ms
6,820 KB |
testcase_27 | AC | 93 ms
6,816 KB |
testcase_28 | AC | 95 ms
6,816 KB |
testcase_29 | AC | 95 ms
6,820 KB |
testcase_30 | AC | 95 ms
6,820 KB |
testcase_31 | AC | 96 ms
6,816 KB |
testcase_32 | AC | 95 ms
6,816 KB |
testcase_33 | AC | 10 ms
6,816 KB |
testcase_34 | AC | 9 ms
6,820 KB |
testcase_35 | AC | 10 ms
6,820 KB |
testcase_36 | AC | 10 ms
6,816 KB |
testcase_37 | AC | 9 ms
6,816 KB |
testcase_38 | AC | 10 ms
6,816 KB |
testcase_39 | AC | 10 ms
6,820 KB |
testcase_40 | AC | 9 ms
6,816 KB |
testcase_41 | AC | 10 ms
6,820 KB |
testcase_42 | AC | 9 ms
6,816 KB |
testcase_43 | AC | 3 ms
6,816 KB |
testcase_44 | AC | 3 ms
6,816 KB |
testcase_45 | AC | 3 ms
6,816 KB |
testcase_46 | AC | 3 ms
6,816 KB |
testcase_47 | AC | 3 ms
6,816 KB |
testcase_48 | AC | 3 ms
6,816 KB |
testcase_49 | AC | 3 ms
6,816 KB |
testcase_50 | AC | 3 ms
6,816 KB |
testcase_51 | AC | 3 ms
6,816 KB |
testcase_52 | AC | 3 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; const int dy[] = {0, 1, 0, -1, 1, 1, -1, -1}; const int dx[] = {1, 0, -1, 0, -1, 1, -1, 1}; pair<int, int> solve1(int sy, int sx); pair<int, int> solve2(int sy, int sx); int h, w; vector<string> s; vector<vector<bool> > check; pair<int, int> solve1(int sy, int sx) { queue<pair<int, int> > q, select; q.push(make_pair(sy, sx)); check[sy][sx] = true; while(!q.empty()){ int y = q.front().first; int x = q.front().second; q.pop(); for(int i=0; i<4; ++i){ int y2 = y + dy[i]; int x2 = x + dx[i]; if(!(0 <= y2 && y2 < h && 0 <= x2 && x2 < w) || check[y2][x2]) continue; if(s[y2][x2] == '.'){ check[y2][x2] = true; q.push(make_pair(y2, x2)); } else{ select.push(make_pair(y2, x2)); } } } pair<int, int> ans(0, 0); while(!select.empty()){ int y = select.front().first; int x = select.front().second; select.pop(); if(!check[y][x]){ pair<int, int> p = solve2(y, x); ans.first += max(p.first, p.second); ans.second += p.second; } } return ans; } pair<int, int> solve2(int sy, int sx) { queue<pair<int, int> > q; q.push(make_pair(sy, sx)); check[sy][sx] = true; int cnt = 1; while(!q.empty()){ int y = q.front().first; int x = q.front().second; q.pop(); for(int i=0; i<8; ++i){ int y2 = y + dy[i]; int x2 = x + dx[i]; if(check[y2][x2]) continue; if(s[y2][x2] == 'x'){ check[y2][x2] = true; q.push(make_pair(y2, x2)); ++ cnt; } } } for(int i=0; i<4; ++i){ int y2 = sy + dy[i]; int x2 = sx + dx[i]; if(!check[y2][x2] && s[y2][x2] == '.'){ auto p = solve1(y2, x2); swap(p.first, p.second); p.first += cnt; return p; } } return make_pair(cnt, 0); } int main() { cin >> h >> w; h += 2; w += 2; s.assign(h, string(w, '.')); for(int y=1; y<h-1; ++y){ for(int x=1; x<w-1; ++x){ cin >> s[y][x]; } } check.assign(h, vector<bool>(w, false)); pair<int, int> ans = solve1(0, 0); cout << max(ans.first, ans.second) << endl; return 0; }