結果
| 問題 |
No.348 カゴメカゴメ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-26 23:53:09 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,935 bytes |
| コンパイル時間 | 1,389 ms |
| コンパイル使用メモリ | 158,864 KB |
| 実行使用メモリ | 118,052 KB |
| 最終ジャッジ日時 | 2024-09-23 03:15:30 |
| 合計ジャッジ時間 | 4,141 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 26 WA * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<typename T> using Graph = vector<vector<T>>;
#define REP(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, a) REP(i, 0, a)
#define EACH(i, a) for (auto i: a)
#define ITR(x, a) for (__typeof(a.begin()) x = a.begin(); x != a.end(); x++)
#define ALL(a) (a.begin()), (a.end())
#define HAS(a, x) (a.find(x) != a.end())
#define endl '\n'
int dx[] = {1, 1, 0, -1, -1, -1, 0, 1};
int dy[] = {0, 1, 1, 1, 0, -1, -1, -1};
int N, M;
char G[1005][1005];
int depth[1005][1005];
int num[1000];
bool is_inside(int x, int y) {
return (0 <= x && x < M && 0 <= y && y < N);
}
int dfs(int x, int y) {
G[y][x] = 'X';
int res = 1;
rep(i, 8) {
int nx = x + dx[i], ny = y + dy[i];
if (!is_inside(nx, ny)) continue;
if (G[ny][nx] != 'x') continue;
res = dfs(nx, ny) + 1;
}
return res;
}
void dfs_dot(int x, int y, int d) {
depth[y][x] = d;
int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};
rep(i, 4) {
int nx = x + dx[i], ny = y + dy[i];
if (!is_inside(nx, ny)) continue;
if (G[ny][nx] != '.') continue;
if (depth[ny][nx] != -1) continue;
dfs_dot(nx, ny, d);
}
}
int main(void) {
cin.tie(0);
ios::sync_with_stdio(false);
cin >> N >> M;
rep(y, N + 2) rep(x, M + 2) G[y][x] = '.';
rep(y, N) rep(x, M) cin >> G[y + 1][x + 1];
rep(y, N + 2) rep(x, M + 2) depth[y][x] = -1;
N += 2; M += 2;
int d = -1;
rep(y, N) rep(x, M) {
if (G[y][x] == 'x') {
num[d] += dfs(x, y);
}
if (G[y][x] == '.') {
if (depth[y][x] == -1) dfs_dot(x, y, d + 1);
d = depth[y][x];
}
}
//rep(y, N) {
// rep(x, M) cout << depth[y][x];
// cout << endl;
//}
int ans = 0, tmp = 0;
for (int i = 0; i < 1000; i += 2) tmp += num[i];
ans = tmp; tmp = 0;
for (int i = 1; i < 1001; i += 2) tmp += num[i];
ans = max(ans, tmp);
cout << ans << endl;
return 0;
}