結果
問題 | No.274 The Wall |
ユーザー | 明智重蔵 |
提出日時 | 2015-08-31 19:57:49 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 2,726 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 115,984 KB |
実行使用メモリ | 27,508 KB |
最終ジャッジ日時 | 2024-06-22 02:05:27 |
合計ジャッジ時間 | 3,033 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
25,252 KB |
testcase_01 | AC | 32 ms
27,172 KB |
testcase_02 | AC | 32 ms
25,332 KB |
testcase_03 | AC | 32 ms
27,368 KB |
testcase_04 | AC | 32 ms
25,136 KB |
testcase_05 | AC | 31 ms
25,248 KB |
testcase_06 | AC | 32 ms
25,392 KB |
testcase_07 | AC | 31 ms
25,392 KB |
testcase_08 | AC | 32 ms
27,372 KB |
testcase_09 | AC | 32 ms
23,224 KB |
testcase_10 | AC | 33 ms
27,320 KB |
testcase_11 | AC | 46 ms
25,332 KB |
testcase_12 | AC | 34 ms
27,256 KB |
testcase_13 | AC | 31 ms
25,332 KB |
testcase_14 | AC | 33 ms
25,440 KB |
testcase_15 | AC | 34 ms
25,464 KB |
testcase_16 | AC | 37 ms
27,508 KB |
testcase_17 | AC | 37 ms
25,464 KB |
testcase_18 | AC | 37 ms
27,384 KB |
testcase_19 | AC | 34 ms
23,220 KB |
testcase_20 | AC | 34 ms
25,332 KB |
testcase_21 | AC | 34 ms
25,464 KB |
testcase_22 | AC | 34 ms
23,476 KB |
testcase_23 | AC | 34 ms
25,312 KB |
testcase_24 | AC | 33 ms
25,580 KB |
testcase_25 | AC | 35 ms
25,264 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; class Program { static string InputPattern = "Input5"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("4 6"); WillReturn.Add("5 5"); WillReturn.Add("2 3"); WillReturn.Add("4 4"); WillReturn.Add("1 1"); //YES } else if (InputPattern == "Input2") { WillReturn.Add("4 6"); WillReturn.Add("3 5"); WillReturn.Add("3 4"); WillReturn.Add("4 4"); WillReturn.Add("1 2"); //NO } else if (InputPattern == "Input3") { WillReturn.Add("2 4"); WillReturn.Add("0 1"); WillReturn.Add("0 1"); //YES } else if (InputPattern == "Input4") { WillReturn.Add("5 10"); WillReturn.Add("8 8"); WillReturn.Add("0 0"); WillReturn.Add("2 4"); WillReturn.Add("2 3"); WillReturn.Add("8 8"); //YES } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } struct LRDef { internal int L; internal int R; } static int M; 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]); M = wkArr[1]; var LRList = new List<LRDef>(); for (int I = 1; I <= InputList.Count - 1; I++) { SplitAct(InputList[I]); LRList.Add(new LRDef() { L = wkArr[0], R = wkArr[1] }); } Console.WriteLine(CanCreateGoodWall(LRList) ? "YES" : "NO"); } //良い壁を作成できるかを返す static bool CanCreateGoodWall(List<LRDef> pLRList) { int[] BanArr = new int[M]; foreach (LRDef EachLR in pLRList) { for (int I = EachLR.L; I <= EachLR.R; I++) { BanArr[I]++; } LRDef KaitenLR = DeriveKaitenLR(EachLR); for (int I = KaitenLR.L; I <= KaitenLR.R; I++) { BanArr[I]++; } } return Array.TrueForAll(BanArr, X => X <= 2); } //180度回転したLRを返す static LRDef DeriveKaitenLR(LRDef pLR) { int NewL = M - 1 - pLR.R; int NewR = M - 1 - pLR.L; return new LRDef() { L = NewL, R = NewR }; } }