結果
問題 | No.555 世界史のレポート |
ユーザー | 明智重蔵 |
提出日時 | 2017-08-18 12:33:01 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,633 bytes |
コンパイル時間 | 1,000 ms |
コンパイル使用メモリ | 113,948 KB |
実行使用メモリ | 32,408 KB |
最終ジャッジ日時 | 2024-10-14 14:51:02 |
合計ジャッジ時間 | 5,081 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
32,408 KB |
testcase_01 | AC | 34 ms
25,592 KB |
testcase_02 | AC | 34 ms
23,472 KB |
testcase_03 | AC | 43 ms
29,404 KB |
testcase_04 | AC | 47 ms
25,368 KB |
testcase_05 | AC | 50 ms
27,232 KB |
testcase_06 | AC | 54 ms
27,464 KB |
testcase_07 | AC | 60 ms
29,560 KB |
testcase_08 | AC | 63 ms
29,728 KB |
testcase_09 | AC | 68 ms
32,148 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
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; //YukiCoder No.555 世界史のレポート //https://yukicoder.me/problems/no/555 class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("6"); WillReturn.Add("3 2"); //12 } else if (InputPattern == "Input2") { WillReturn.Add("10"); WillReturn.Add("1 3"); //15 } else if (InputPattern == "Input3") { WillReturn.Add("100"); WillReturn.Add("1000 1"); //1099 } else if (InputPattern == "Input4") { WillReturn.Add("35344"); WillReturn.Add("768 919"); //25141 } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int[] wkArr = { }; Action<string> SplitAct = pStr => wkArr = pStr.Split(' ').Select(X => int.Parse(X)).ToArray(); SplitAct(InputList[0]); int N = wkArr[0]; SplitAct(InputList[1]); int C = wkArr[0]; int V = wkArr[1]; //最小コスト[レポートの文字数,クリップボートの文字数]なDP表 var PrevDP = new Dictionary<string, int>(); PrevDP.Add("1,0", 0); int Answer = int.MaxValue; while (true) { bool WillBreak = true; var CurrDP = new Dictionary<string, int>(); foreach (var EachPair in PrevDP) { JyoutaiDef CurrJyoutai = DeriveJyoutai(EachPair.Key); if (CurrJyoutai.ReportLen >= N) { if (Answer > EachPair.Value) Answer = EachPair.Value; continue; } WillBreak = false; JyoutaiDef NewJyoutai; string NewKey; int NewValue; //コピーする場合 if (CurrJyoutai.ClipLen < CurrJyoutai.ReportLen) { NewJyoutai.ReportLen = CurrJyoutai.ReportLen; NewJyoutai.ClipLen = CurrJyoutai.ReportLen; NewKey = DeriveHash(NewJyoutai); NewValue = EachPair.Value + C; if (CurrDP.ContainsKey(NewKey) == false || CurrDP[NewKey] > NewValue) { CurrDP[NewKey] = NewValue; } } //ペーストする場合 if (CurrJyoutai.ClipLen > 0) { NewJyoutai.ReportLen = CurrJyoutai.ReportLen + CurrJyoutai.ClipLen; NewJyoutai.ClipLen = CurrJyoutai.ClipLen; NewKey = DeriveHash(NewJyoutai); NewValue = EachPair.Value + V; if (CurrDP.ContainsKey(NewKey) == false || CurrDP[NewKey] > NewValue) { CurrDP[NewKey] = NewValue; } } } PrevDP = CurrDP; if (WillBreak) break; } Console.WriteLine(Answer); ////最小コスト[レポートの文字数,クリップボートの文字数]なDP表 //var DPArr = new Nullable<int>[N + 1, N + 1]; //DPArr[1, 0] = 0; //for (int I = 0; I <= N; I++) { // for (int J = 0; J <= N; J++) { // if (DPArr[I, J].HasValue == false) continue; // //コピーする場合 // int NewI = I; // int NewJ = I; // int NewCost = DPArr[I, J].Value + C; // if (NewI > N) NewI = N; // if (NewJ > N) NewJ = N; // if (DPArr[NewI, NewJ].HasValue == false // || DPArr[NewI, NewJ].Value > NewCost) { // DPArr[NewI, NewJ] = NewCost; // } // //ペーストする場合 // NewI = I + J; // NewJ = J; // NewCost = DPArr[I, J].Value + V; // if (NewI > N) NewI = N; // if (NewJ > N) NewJ = N; // if (DPArr[NewI, NewJ].HasValue == false // || DPArr[NewI, NewJ].Value > NewCost) { // DPArr[NewI, NewJ] = NewCost; // } // } //} ////for (int I = 0; I <= N; I++) { //// for (int J = 0; J <= N; J++) { //// Console.WriteLine("DPArr[{0},{1}]={2}", I, J, DPArr[I, J]); //// } ////} //int Answer = int.MaxValue; //for (int I = 0; I <= N; I++) { // if (DPArr[N, I].HasValue == false) continue; // if (Answer > DPArr[N, I].Value) // Answer = DPArr[N, I].Value; //} //Console.WriteLine(Answer); } struct JyoutaiDef { internal int ReportLen; internal int ClipLen; } static string DeriveHash(JyoutaiDef pJyoutai) { return string.Format("{0},{1}", pJyoutai.ReportLen, pJyoutai.ClipLen); } static JyoutaiDef DeriveJyoutai(string pHash) { string[] SplitArr = pHash.Split(','); JyoutaiDef WillReturn; WillReturn.ReportLen = int.Parse(SplitArr[0]); WillReturn.ClipLen = int.Parse(SplitArr[1]); return WillReturn; } }