結果
問題 | No.402 最も海から遠い場所 |
ユーザー | AreTrash |
提出日時 | 2016-06-24 04:13:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,314 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 67,136 KB |
実行使用メモリ | 57,196 KB |
最終ジャッジ日時 | 2024-11-06 10:09:10 |
合計ジャッジ時間 | 3,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 4 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,824 KB |
testcase_15 | AC | 12 ms
9,008 KB |
testcase_16 | AC | 15 ms
12,556 KB |
testcase_17 | AC | 169 ms
35,600 KB |
testcase_18 | AC | 491 ms
40,668 KB |
testcase_19 | AC | 226 ms
42,116 KB |
testcase_20 | WA | - |
testcase_21 | AC | 227 ms
57,196 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%s", s); | ~~~~~^~~~~~~~~
ソースコード
#include <iostream> #include <stdio.h> #include <algorithm> #include <queue> using namespace std; int W, H; int dist[3010][3010] = { 0 }; char s[3010]; int main(void) { cin >> H >> W; queue<int> Q; for (int i = 2; i <= H + 1; i++) { scanf("%s", s); for (int j = 2; j <= W + 1; j++) { if (s[j - 2] == '#') { dist[i][j] = 1510; } else { Q.push((j << 12) + i); } } } for (int i = 2; i <= H + 1; i++) { Q.push((1 << 12) + i); Q.push((W + 2 << 12) + i); } for (int i = 2; i <= W + 1; i++) { Q.push((i << 12) + 1); Q.push((i << 12) + H + 2); } int dx[] = { 0, 1, 0, -1, 1, 1, -1, -1 }; int dy[] = { 1, 0, -1, 0, 1, -1, 1, -1 }; int ans = 0; while (Q.size()) { //t > 2^8 NG int deq = Q.front(); Q.pop(); int t = deq >> 24 & 0xfff; int x = deq >> 12 & 0xfff; int y = deq & 0xfff; for (int i = 0; i < 8; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (dist[ny][nx] > t + 1) { ans = max(ans, dist[ny][nx] = t + 1); Q.push((t + 1 << 24) + (nx << 12) + ny); } } } cout << ans << endl; return 0; }