結果
問題 | No.498 ワープクリスタル (給料日編) |
ユーザー | 14番 |
提出日時 | 2017-03-25 00:15:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 916 ms / 2,000 ms |
コード長 | 2,889 bytes |
コンパイル時間 | 3,627 ms |
コンパイル使用メモリ | 108,544 KB |
実行使用メモリ | 63,684 KB |
最終ジャッジ日時 | 2024-07-06 03:09:45 |
合計ジャッジ時間 | 15,518 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
19,072 KB |
testcase_01 | AC | 26 ms
19,200 KB |
testcase_02 | AC | 25 ms
19,072 KB |
testcase_03 | AC | 27 ms
19,328 KB |
testcase_04 | AC | 866 ms
63,564 KB |
testcase_05 | AC | 27 ms
19,456 KB |
testcase_06 | AC | 866 ms
63,556 KB |
testcase_07 | AC | 880 ms
63,428 KB |
testcase_08 | AC | 879 ms
63,548 KB |
testcase_09 | AC | 896 ms
63,424 KB |
testcase_10 | AC | 28 ms
19,328 KB |
testcase_11 | AC | 138 ms
30,208 KB |
testcase_12 | AC | 28 ms
19,200 KB |
testcase_13 | AC | 54 ms
24,576 KB |
testcase_14 | AC | 27 ms
19,456 KB |
testcase_15 | AC | 29 ms
19,680 KB |
testcase_16 | AC | 27 ms
19,328 KB |
testcase_17 | AC | 29 ms
19,660 KB |
testcase_18 | AC | 916 ms
63,564 KB |
testcase_19 | AC | 903 ms
63,548 KB |
testcase_20 | AC | 882 ms
63,548 KB |
testcase_21 | AC | 872 ms
63,560 KB |
testcase_22 | AC | 884 ms
63,428 KB |
testcase_23 | AC | 873 ms
63,684 KB |
testcase_24 | AC | 872 ms
63,680 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.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int[] inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray(); this.GoalX = inpt[0]; this.GoalY = inpt[1]; int crystalCount = inpt[2]; int[] crystalRemain = new int[crystalCount]; this.CrystalList = new Crystal[crystalCount]; for (int i = 0; i < crystalCount; i++) { inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray(); this.CrystalList[i] = new Crystal(inpt[0], inpt[1]); crystalRemain[i] = inpt[2]; } long ans = GetAns(0, 0, crystalRemain); Console.WriteLine(ans); } private const long Mod = 1000000007; private Dictionary<long, long> dic = new Dictionary<long, long>(); private long GetAns(int x, int y, int[] remain) { if (remain.Sum() == 0) { if (x == GoalX && y == GoalY) { return 1; } else { return 0; } } long key = 0; for (int i = 0; i < remain.Length; i++) { key = key * 100; key += remain[i]; } if (dic.ContainsKey(key)) { return dic[key]; } long ans = 0; if (x == GoalX && y == GoalY) { ans = 1; } for (int i = 0; i < CrystalList.Length; i++) { if (remain[i] <= 0) { continue; } remain[i]--; ans += GetAns(x + CrystalList[i].MoveX, y + CrystalList[i].MoveY, remain); ans = ans % Mod; remain[i]++; } dic[key] = ans; return ans; } private int GoalX = 0; private int GoalY = 0; private Crystal[] CrystalList; private class Crystal { public int MoveX; public int MoveY; public Crystal(int x, int y) { this.MoveX = x; this.MoveY = y; } } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 1 0 3 -4 0 1 2 1 1 3 -1 1 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }