結果

問題 No.340 雪の足跡
ユーザー asi1024asi1024
提出日時 2016-02-19 23:02:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 350 ms / 1,000 ms
コード長 1,326 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 166,128 KB
実行使用メモリ 70,664 KB
最終ジャッジ日時 2024-09-22 12:23:33
合計ジャッジ時間 7,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
30,996 KB
testcase_01 AC 10 ms
30,672 KB
testcase_02 AC 10 ms
27,696 KB
testcase_03 AC 10 ms
30,740 KB
testcase_04 AC 10 ms
30,024 KB
testcase_05 AC 10 ms
28,272 KB
testcase_06 AC 11 ms
30,328 KB
testcase_07 AC 10 ms
27,704 KB
testcase_08 AC 11 ms
30,548 KB
testcase_09 AC 11 ms
31,028 KB
testcase_10 AC 11 ms
30,116 KB
testcase_11 AC 12 ms
30,924 KB
testcase_12 AC 12 ms
30,120 KB
testcase_13 AC 12 ms
30,368 KB
testcase_14 AC 30 ms
33,520 KB
testcase_15 AC 33 ms
34,120 KB
testcase_16 AC 24 ms
32,744 KB
testcase_17 AC 38 ms
34,356 KB
testcase_18 AC 34 ms
36,892 KB
testcase_19 AC 38 ms
36,996 KB
testcase_20 AC 170 ms
45,440 KB
testcase_21 AC 105 ms
30,540 KB
testcase_22 AC 20 ms
39,136 KB
testcase_23 AC 244 ms
70,564 KB
testcase_24 AC 131 ms
39,456 KB
testcase_25 AC 184 ms
53,012 KB
testcase_26 AC 34 ms
30,924 KB
testcase_27 AC 15 ms
30,000 KB
testcase_28 AC 35 ms
32,416 KB
testcase_29 AC 239 ms
55,488 KB
testcase_30 AC 176 ms
49,572 KB
testcase_31 AC 299 ms
67,088 KB
testcase_32 AC 347 ms
70,484 KB
testcase_33 AC 305 ms
70,552 KB
testcase_34 AC 350 ms
70,480 KB
testcase_35 AC 324 ms
70,664 KB
testcase_36 AC 322 ms
70,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   scanf("%d%d%d", &W, &H, &N);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~
main.cpp:17:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |     int M; scanf("%d", &M);
      |            ~~~~~^~~~~~~~~~
main.cpp:19:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |     REP(j,M+1) scanf("%d", &B[j]);
      |                ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(x) (x).begin(),(x).end()

using namespace std;

const int INF = 1e9;

int row[1024][1024], column[1024][1024];
vector<int> g[1024000];

int main() {
  int W, H, N;
  scanf("%d%d%d", &W, &H, &N);
  REP(i,N) {
    int M; scanf("%d", &M);
    vector<int> B(M+1);
    REP(j,M+1) scanf("%d", &B[j]);
    REP(j,M) {
      int a = B[j], b = B[j+1];
      if (a > b) swap(a, b);
      if (b - a < W) { ++row[a/W][a%W]; --row[b/W][b%W]; }
      else { ++column[a/W][a%W]; --column[b/W][b%W]; }
    }
  }
  REP(i,H) REP(j,W-1) row[i][j+1] += row[i][j];
  REP(i,H-1) REP(j,W) column[i+1][j] += column[i][j];
  REP(i,H) REP(j,W) {
    if (row[i][j]) {
      g[i*W+j].push_back(i*W+j+1);
      g[i*W+j+1].push_back(i*W+j);
    }
    if (column[i][j]) {
      g[i*W+j].push_back(i*W+j+W);
      g[i*W+j+W].push_back(i*W+j);
    }
  }
  vector<int> dist(H * W, INF);
  dist[0] = 0;
  queue<int> que;
  que.push(0);
  while (!que.empty()) {
    int v = que.front();
    que.pop();
    for (int i: g[v]) {
      if (dist[i] < INF) continue;
      dist[i] = dist[v] + 1;
      que.push(i);
    }
  }
  //for (int i: dist) cout << i << endl;
  if (dist[H * W - 1] == INF) cout << "Odekakedekinai.." << endl;
  else cout << dist[H * W - 1] << endl;
  return 0;
}
0