結果
問題 | No.340 雪の足跡 |
ユーザー | AreTrash |
提出日時 | 2016-04-23 19:01:36 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 499 ms / 1,000 ms |
コード長 | 3,171 bytes |
コンパイル時間 | 2,253 ms |
コンパイル使用メモリ | 107,896 KB |
実行使用メモリ | 56,860 KB |
最終ジャッジ日時 | 2024-10-04 15:22:21 |
合計ジャッジ時間 | 10,615 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
26,836 KB |
testcase_01 | AC | 23 ms
22,840 KB |
testcase_02 | AC | 23 ms
24,412 KB |
testcase_03 | AC | 23 ms
25,004 KB |
testcase_04 | AC | 23 ms
24,664 KB |
testcase_05 | AC | 22 ms
24,624 KB |
testcase_06 | AC | 24 ms
25,004 KB |
testcase_07 | AC | 23 ms
24,668 KB |
testcase_08 | AC | 23 ms
24,756 KB |
testcase_09 | AC | 24 ms
26,840 KB |
testcase_10 | AC | 24 ms
26,708 KB |
testcase_11 | AC | 29 ms
27,012 KB |
testcase_12 | AC | 29 ms
27,184 KB |
testcase_13 | AC | 28 ms
23,224 KB |
testcase_14 | AC | 47 ms
31,836 KB |
testcase_15 | AC | 51 ms
31,988 KB |
testcase_16 | AC | 46 ms
30,008 KB |
testcase_17 | AC | 56 ms
30,048 KB |
testcase_18 | AC | 52 ms
31,840 KB |
testcase_19 | AC | 57 ms
30,060 KB |
testcase_20 | AC | 376 ms
49,140 KB |
testcase_21 | AC | 282 ms
49,604 KB |
testcase_22 | AC | 40 ms
31,988 KB |
testcase_23 | AC | 435 ms
56,384 KB |
testcase_24 | AC | 350 ms
50,456 KB |
testcase_25 | AC | 364 ms
52,280 KB |
testcase_26 | AC | 83 ms
40,372 KB |
testcase_27 | AC | 37 ms
27,140 KB |
testcase_28 | AC | 75 ms
37,344 KB |
testcase_29 | AC | 388 ms
51,852 KB |
testcase_30 | AC | 227 ms
44,476 KB |
testcase_31 | AC | 410 ms
56,860 KB |
testcase_32 | AC | 469 ms
55,444 KB |
testcase_33 | AC | 332 ms
48,552 KB |
testcase_34 | AC | 499 ms
55,336 KB |
testcase_35 | AC | 429 ms
53,768 KB |
testcase_36 | AC | 443 ms
55,396 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace No340_2{ public class Program{ public static void Main(string[] args){ var input = Console.ReadLine().Split(' '); var w = int.Parse(input[0]); var h = int.Parse(input[1]); var n = int.Parse(input[2]); var imx = new int[h, w]; var imy = new int[w, h]; for(var i = 0; i < n; i++){ var m = int.Parse(Console.ReadLine()); var bn = Console.ReadLine().Split(' ').ToList().ConvertAll(int.Parse); for(var j = 1; j <= m; j++){ var from = Math.Min(bn[j - 1], bn[j]); var to = Math.Max(bn[j - 1], bn[j]); if(to - from < w){ var tmp = bn[j] / w; imx[tmp, from - tmp * w]++; imx[tmp, to - tmp * w]--; } else{ var tmp = bn[j] % w; imy[tmp, from / w]++; imy[tmp, to / w]--; } } } for(var i = 0; i < h; i++){ for(var j = 1; j < w; j++){ imx[i, j] += imx[i, j - 1]; } } for(var i = 0; i < w; i++){ for(var j = 1; j < h; j++){ imy[i, j] += imy[i, j - 1]; } } var result = new int[w * h]; result[0] = 1; var que = new Queue<int>(); if(imx[0, 0] != 0){ que.Enqueue(1); result[1] = 2; } if(imy[0, 0] != 0) { que.Enqueue(w); result[w] = 2; } while(que.Count > 0 && result[w * h - 1] == 0){ var cur = que.Dequeue(); { var tmp = cur / w; if(tmp == (cur - 1) / w && imx[tmp, cur - tmp * w - 1] != 0 && result[cur - 1] == 0){ que.Enqueue(cur - 1); result[cur - 1] = result[cur] + 1; } if(tmp == (cur + 1) / w && imx[tmp, cur - tmp * w] != 0 && result[cur + 1] == 0){ que.Enqueue(cur + 1); result[cur + 1] = result[cur] + 1; } } { var tmp = cur % w; if(cur - w > 0 && imy[tmp, cur / w - 1] != 0 && result[cur - w] == 0){ que.Enqueue(cur - w); result[cur - w] = result[cur] + 1; } if(cur + w < w * h && imy[tmp, cur / w] != 0 && result[cur + w] == 0){ que.Enqueue(cur + w); result[cur + w] = result[cur] + 1; } } } if(result[w * h - 1] == 0) Console.WriteLine("Odekakedekinai.."); else Console.WriteLine(result[w * h - 1] - 1); } } }