結果

問題 No.402 最も海から遠い場所
ユーザー AreTrash
提出日時 2016-07-22 14:04:28
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 506 ms / 3,000 ms
コード長 1,155 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 67,736 KB
実行使用メモリ 115,888 KB
最終ジャッジ日時 2024-11-06 12:30:14
合計ジャッジ時間 3,812 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);
      |         ~~~~~^~~~~~~~~
main.cpp:51:22: warning: ‘y’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   51 |     cout << dist[y][x] << endl;
      |                      ^
main.cpp:51:22: warning: ‘x’ may be used uninitialized in this function [-Wmaybe-uninitialized]

ソースコード

diff #

#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;
            }
        }
    }

    for (int i = 1; i <= H + 2; i++) {
        for (int j = 1; j <= W + 2; j++) {
            if (dist[i][j] == 0) {
                Q.push(0); Q.push(j); Q.push(i);
            }
        }
    }

    int dx[] = { 0, 1, 0, -1, 1, 1, -1, -1 };
    int dy[] = { 1, 0, -1, 0, 1, -1, 1, -1 };
    int t, x, y, nx, ny;

    while (Q.size()) {
        t = Q.front(); Q.pop();
        x = Q.front(); Q.pop();
        y = Q.front(); Q.pop();
        for (int i = 0; i < 8; i++) {
            nx = x + dx[i];
            ny = y + dy[i];
            if (dist[ny][nx] > t + 1) {
                dist[ny][nx] = t + 1;
                Q.push(t + 1); Q.push(nx); Q.push(ny);
            }
        }
    }

    cout << dist[y][x] << endl;
    return 0;
}
0