結果
問題 | No.340 雪の足跡 |
ユーザー | h_noson |
提出日時 | 2016-06-17 22:07:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 462 ms / 1,000 ms |
コード長 | 2,828 bytes |
コンパイル時間 | 719 ms |
コンパイル使用メモリ | 74,332 KB |
実行使用メモリ | 23,064 KB |
最終ジャッジ日時 | 2024-10-09 16:34:37 |
合計ジャッジ時間 | 9,035 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 4 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 4 ms
7,884 KB |
testcase_14 | AC | 21 ms
12,088 KB |
testcase_15 | AC | 26 ms
12,340 KB |
testcase_16 | AC | 20 ms
8,268 KB |
testcase_17 | AC | 33 ms
12,872 KB |
testcase_18 | AC | 27 ms
13,776 KB |
testcase_19 | AC | 36 ms
13,708 KB |
testcase_20 | AC | 311 ms
23,064 KB |
testcase_21 | AC | 193 ms
6,816 KB |
testcase_22 | AC | 36 ms
22,832 KB |
testcase_23 | AC | 365 ms
22,808 KB |
testcase_24 | AC | 309 ms
22,872 KB |
testcase_25 | AC | 331 ms
22,932 KB |
testcase_26 | AC | 54 ms
10,308 KB |
testcase_27 | AC | 12 ms
6,820 KB |
testcase_28 | AC | 47 ms
8,396 KB |
testcase_29 | AC | 384 ms
22,184 KB |
testcase_30 | AC | 255 ms
16,380 KB |
testcase_31 | AC | 394 ms
21,876 KB |
testcase_32 | AC | 462 ms
23,060 KB |
testcase_33 | AC | 354 ms
22,952 KB |
testcase_34 | AC | 447 ms
22,932 KB |
testcase_35 | AC | 343 ms
22,932 KB |
testcase_36 | AC | 340 ms
22,936 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <queue> #include <algorithm> using namespace std; #define REP(i,s,e) for (i = s; i <= e; i++) #define rep(i,n) REP (i,0,(int)(n)-1) #define RREP(i,s,e) for (i = s; i >= e; i--) #define rrep(i,n) RREP (i,(int)(n)-1,0) #define INF (int)1e8 #define MOD (int)(1e9+7) #define RIGHT 3 #define LEFT 1 #define UP 0 #define DOWN 2 typedef long long ll; int pass[1000][1000][4]; int dist[1000][1000]; int main(void) { int i, j, w, h, n; cin >> w >> h >> n; rep (i,n) { int m, pre; cin >> m >> pre; rep (j,m) { int b; cin >> b; if (pre / w == b / w) { int y = pre / w; int from = pre % w; int to = b % w; if (from < to) { pass[y][from][RIGHT]++; pass[y][to][RIGHT]--; pass[y][to][LEFT]++; pass[y][from][LEFT]--; } else { pass[y][from][LEFT]++; pass[y][to][LEFT]--; pass[y][to][RIGHT]++; pass[y][from][RIGHT]--; } } else { int x = pre % w; int from = pre / w; int to = b / w; if (from < to) { pass[from][x][UP]++; pass[to][x][UP]--; pass[to][x][DOWN]++; pass[from][x][DOWN]--; } else { pass[from][x][DOWN]++; pass[to][x][DOWN]--; pass[to][x][UP]++; pass[from][x][UP]--; } } pre = b; } } rep (i,h) rep (j,w-1) pass[i][j+1][RIGHT] += pass[i][j][RIGHT]; rep (i,h) rrep (j,w-1) pass[i][j][LEFT] += pass[i][j+1][LEFT]; rep (j,w) rep (i,h-1) pass[i+1][j][UP] += pass[i][j][UP]; rep (j,w) rrep (i,h-1) pass[i][j][DOWN] += pass[i+1][j][DOWN]; queue<pair<int,int>> q; rep (i,h) rep (j,w) dist[i][j] = INF; dist[0][0] = 0; q.push(make_pair(0,0)); while (!q.empty()) { int y = q.front().first; int x = q.front().second; q.pop(); int dxy[4] = {1,0,-1,0}; rep (i,4) if (pass[y][x][i]) { int ny = y + dxy[i]; int nx = x + dxy[(i+1)%4]; if (ny < 0 || ny >= h || nx < 0 || nx >= w) continue; if (dist[ny][nx] > dist[y][x] + 1) { dist[ny][nx] = dist[y][x] + 1; q.push(make_pair(ny,nx)); } } } if (dist[h-1][w-1] == INF) cout << "Odekakedekinai.." << endl; else cout << dist[h-1][w-1] << endl; return 0; }