結果
問題 | No.320 眠れない夜に |
ユーザー | 14番 |
提出日時 | 2016-05-18 22:45:50 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,986 bytes |
コンパイル時間 | 932 ms |
コンパイル使用メモリ | 117,868 KB |
実行使用メモリ | 29,728 KB |
最終ジャッジ日時 | 2024-10-06 05:42:21 |
合計ジャッジ時間 | 3,193 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,648 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 34 ms
23,600 KB |
testcase_04 | AC | 34 ms
27,520 KB |
testcase_05 | AC | 33 ms
27,628 KB |
testcase_06 | AC | 33 ms
25,460 KB |
testcase_07 | AC | 34 ms
25,720 KB |
testcase_08 | AC | 33 ms
25,508 KB |
testcase_09 | AC | 30 ms
27,500 KB |
testcase_10 | AC | 33 ms
25,776 KB |
testcase_11 | AC | 33 ms
25,460 KB |
testcase_12 | AC | 32 ms
25,460 KB |
testcase_13 | AC | 34 ms
25,588 KB |
testcase_14 | AC | 35 ms
29,728 KB |
testcase_15 | AC | 34 ms
25,780 KB |
testcase_16 | AC | 34 ms
25,464 KB |
testcase_17 | AC | 34 ms
25,848 KB |
testcase_18 | AC | 32 ms
25,520 KB |
testcase_19 | AC | 33 ms
23,732 KB |
testcase_20 | AC | 37 ms
25,520 KB |
testcase_21 | AC | 37 ms
25,772 KB |
testcase_22 | AC | 32 ms
27,632 KB |
testcase_23 | WA | - |
testcase_24 | AC | 34 ms
27,632 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 30 ms
23,348 KB |
testcase_29 | AC | 33 ms
25,520 KB |
testcase_30 | AC | 35 ms
27,512 KB |
testcase_31 | AC | 35 ms
27,824 KB |
testcase_32 | AC | 29 ms
25,716 KB |
testcase_33 | AC | 31 ms
25,720 KB |
testcase_34 | AC | 32 ms
25,332 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; long[] inpt = Reader.ReadLine().Split(' ').Select(a=>long.Parse(a)).ToArray(); long times = inpt[0]; long count = inpt[1]; long[] list = new long[times + 1]; list[1] = 1; list[2] = 1; for(long i = 3; i<= times; i++) { int idx = (int)i; list[idx] = list[idx-1] + list[idx - 2]; } long sa = list[times] - count; this.NumList = list.Reverse().ToArray(); int ans = this.GetAns(0, sa); Console.WriteLine(ans); } Dictionary<int, Dictionary<long, int>> dic = new Dictionary<int, Dictionary<long, int>>(); private int GetAns(int idx, long remain) { if(!this.dic.ContainsKey(idx)) { this.dic.Add(idx, new Dictionary<long, int>()); } if(dic[idx].ContainsKey(remain)) { return dic[idx][remain]; } if(remain == 0) { return 0; } if(idx == this.NumList.Length - 1) { if(remain == this.NumList.Last()) { return 1; } else { return -1; } } int ans = -1; if(this.NumList.ToList().IndexOf(remain) >= idx) { ans = 1; } else if(this.NumList.Skip(idx).Sum(a=>a) < remain) { ans = -1; } else { int ret = this.GetAns(idx+1, remain); if(ret >= 0) { if(ans < 0) { ans = ret; } else { ans = Math.Min(ans, ret); } } if(remain >= this.NumList[idx]) { ret = this.GetAns(idx+1, remain - this.NumList[idx]); if(ret >= 0) { ret++; if(ans < 0) { ans = ret; } else { ans = Math.Min(ans, ret); } } } } this.dic[idx].Add(remain, ans); return ans; } private long[] NumList; public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 67 17308070087783 "; 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(); } }