結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | 14番 |
提出日時 | 2016-04-12 01:20:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,524 bytes |
コンパイル時間 | 865 ms |
コンパイル使用メモリ | 114,864 KB |
実行使用メモリ | 52,480 KB |
最終ジャッジ日時 | 2024-10-04 06:55:19 |
合計ジャッジ時間 | 21,981 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,920 KB |
testcase_01 | AC | 233 ms
52,480 KB |
testcase_02 | AC | 232 ms
52,464 KB |
testcase_03 | AC | 33 ms
27,328 KB |
testcase_04 | AC | 31 ms
27,336 KB |
testcase_05 | AC | 63 ms
29,832 KB |
testcase_06 | AC | 31 ms
27,500 KB |
testcase_07 | AC | 45 ms
29,576 KB |
testcase_08 | AC | 42 ms
29,428 KB |
testcase_09 | AC | 36 ms
25,316 KB |
testcase_10 | AC | 37 ms
27,468 KB |
testcase_11 | AC | 2,285 ms
29,316 KB |
testcase_12 | AC | 2,339 ms
29,716 KB |
testcase_13 | AC | 2,313 ms
33,796 KB |
testcase_14 | AC | 3,283 ms
31,732 KB |
testcase_15 | AC | 252 ms
31,752 KB |
testcase_16 | AC | 298 ms
31,640 KB |
testcase_17 | AC | 348 ms
31,760 KB |
testcase_18 | AC | 426 ms
29,808 KB |
testcase_19 | AC | 482 ms
29,584 KB |
testcase_20 | AC | 53 ms
29,684 KB |
testcase_21 | AC | 52 ms
31,636 KB |
testcase_22 | AC | 724 ms
29,712 KB |
testcase_23 | AC | 404 ms
31,632 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
コンパイルメッセージ
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 lineCount = int.Parse(Reader.ReadLine()); int inputCount = int.Parse(Reader.ReadLine()); Dictionary<int, int> dic = new Dictionary<int, int>(); List<int> numList = new List<int>(); int ans = lineCount; for (int i = 1; i <= lineCount; i++) { numList.Add(i-1); } List<AmidaLine> amidaList = new List<AmidaLine>(); for (int i = 0; i < inputCount; i++) { int[] inpt = Reader.GetInt(); AmidaLine al = new AmidaLine(inpt[0]-1, inpt[1]-1, i); amidaList.Add(al); } for (int i = 0; i < lineCount; i++) { int pos = -1; int idx = i; for (int j = 0; j < inputCount; j++) { List<AmidaLine> select = new List<AmidaLine>(amidaList.FindAll(a => (a.Line1 == idx || a.Line2 == idx) && a.Pos > pos).OrderBy(b => b.Pos)); if (select.Count == 0) { break; } pos = select[0].Pos; idx = select[0].Goto(idx); } dic.Add(i, idx); } int[] target = numList.ToArray(); for (int i = 0; i < int.MaxValue; i++) { int[] conv = new int[lineCount]; bool isMatch = true; for (int j = 0; j < target.Length; j++) { conv[dic[j]] = target[j]; if (isMatch && dic[j] != target[j]) { isMatch = false; } } target = conv; if (isMatch) { ans = i + 1; break; } } Console.WriteLine(ans); } public class AmidaLine { public int Line1; public int Line2; public int Pos; public int Goto(int from) { if (from == Line1) { return Line2; } return Line1; } public AmidaLine(int l1, int l2, int p) { this.Line2 = l2; this.Line1 = l1; this.Pos = p; } } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" "; 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(); } }