結果
問題 | No.95 Alice and Graph |
ユーザー | 14番 |
提出日時 | 2016-04-11 23:25:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,707 bytes |
コンパイル時間 | 825 ms |
コンパイル使用メモリ | 113,496 KB |
実行使用メモリ | 288,888 KB |
最終ジャッジ日時 | 2024-10-04 06:41:40 |
合計ジャッジ時間 | 13,393 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
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.GetInt(); this.NodeCount = inpt[0]; int connecterCount = inpt[1]; int maxMove = inpt[2]; for (int i = 0; i < connecterCount; i++) { inpt = Reader.GetInt(); if (!roadDic.ContainsKey(inpt[0])) { roadDic.Add(inpt[0], new List<int>()); } roadDic[inpt[0]].Add(inpt[1]); if (!roadDic.ContainsKey(inpt[1])) { roadDic.Add(inpt[1], new List<int>()); } roadDic[inpt[1]].Add(inpt[0]); } List<int> num = new List<int>(); for (int i = 1; i <= NodeCount; i++) { num.Add(i); } long ans = this.GetAns(1, maxMove, num); Console.WriteLine(ans); } private long GetAns(int nodeNum, int remain, List<int> target) { String key = String.Join<int>("#", target); if (!dic.ContainsKey(nodeNum)) { dic.Add(nodeNum, new Dictionary<int,Dictionary<string,long>>()); } if (!dic[nodeNum].ContainsKey(remain)) { dic[nodeNum].Add(remain, new Dictionary<string,long>()); } if(dic[nodeNum][remain].ContainsKey(key)) { return dic[nodeNum][remain][key]; } long ans = 0; if (remain == 0) { if (target.Contains(nodeNum)) { ans = (long)Math.Pow(2, nodeNum - 1) - 1; } } else { long addNum = 0; if(target.Contains(nodeNum)) { addNum = (long)Math.Pow(2, nodeNum - 1) - 1; } List<int> subList = new List<int>(target); subList.Remove(nodeNum); foreach (int num in roadDic[nodeNum]) { long ret = this.GetAns(num, remain - 1, subList); if(ret >= 0) { ret += addNum; } ans = Math.Max(ans, ret); } } dic[nodeNum][remain].Add(key, ans); return ans; } private Dictionary<int, List<int>> roadDic = new Dictionary<int, List<int>>(); private Dictionary<int, Dictionary<int, Dictionary<string, long>>> dic = new Dictionary<int,Dictionary<int,Dictionary<string,long>>>(); private int NodeCount; public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 5 4 4 3 4 4 1 1 5 5 2 "; 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(); } } public static int[] GetInt(char delimiter = ' ', bool trim = false) { string inptStr = ReadLine(); if (trim) { inptStr = inptStr.Trim(); } string[] inpt = inptStr.Split(delimiter); int[] ret = new int[inpt.Length]; for (int i = 0; i < inpt.Length; i++) { ret[i] = int.Parse(inpt[i]); } return ret; } } static void Main() { Program prg = new Program(); prg.Proc(); } }