結果
問題 | No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい |
ユーザー | 14番 |
提出日時 | 2016-11-08 13:50:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,743 bytes |
コンパイル時間 | 2,570 ms |
コンパイル使用メモリ | 118,192 KB |
実行使用メモリ | 76,524 KB |
最終ジャッジ日時 | 2024-05-03 23:20:27 |
合計ジャッジ時間 | 14,463 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
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 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Text; using System.Collections.Generic; public class Program { public void Proc() { Reader.IsDebug = false; int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); int teamCount = inpt[0]; int passCount = inpt[1]; Dictionary<int, Dictionary<int, Dictionary<int, int>>> dic = new Dictionary<int, Dictionary<int, Dictionary<int, int>>>(); Dictionary<int, int> univCount = new Dictionary<int, int>(); for(int i=0; i<teamCount; i++) { inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); if(!dic.ContainsKey(inpt[0])) { dic.Add(inpt[0], new Dictionary<int, Dictionary<int, int>>()); } if(!dic[inpt[0]].ContainsKey(inpt[2])) { dic[inpt[0]].Add(inpt[2], new Dictionary<int, int>()); } dic[inpt[0]][inpt[2]][inpt[1]] = i; univCount[inpt[2]] = 0; } int cnt = 0; StringBuilder ans = new StringBuilder(); foreach(int acCount in dic.Keys.OrderByDescending(a=>a)) { if(cnt >= passCount) { break; } int must = Math.Min(passCount-cnt, dic[acCount].Sum(a=>a.Value.Count())); for(int i=0; i<must; i++) { int univ = -1; int[] un = dic[acCount].Keys.OrderBy(a=>univCount[a]).ToArray(); un = un.Where(a=>a==un.Max()).ToArray(); un = un.OrderBy(a=>dic[acCount][a].Min(b=>b.Key)).ToArray(); univ = un[0]; int penalty = dic[acCount][univ].Keys.Min(); ans.AppendLine(dic[acCount][univ][penalty].ToString()); univCount[univ]++; cnt++; dic[acCount][univ].Remove(penalty); if(dic[acCount][univ].Count == 0) { dic[acCount].Remove(univ); } } } Console.Write(ans.ToString()); } public class Reader { public static bool IsDebug = true; private static System.IO.StringReader SReader; private static string InitText = @" 5 3 3 100 1 4 200 1 4 300 1 3 150 2 2 50 2 "; public static string ReadLine() { if(IsDebug) { if(SReader == null) { SReader = new System.IO.StringReader(InitText.Trim()); } return SReader.ReadLine(); } else { return Console.ReadLine(); } } } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } }