結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー 14番14番
提出日時 2016-11-08 13:50:12
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,743 bytes
コンパイル時間 4,274 ms
コンパイル使用メモリ 117,216 KB
実行使用メモリ 77,072 KB
最終ジャッジ日時 2024-11-25 04:50:35
合計ジャッジ時間 111,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
25,644 KB
testcase_31 AC 42 ms
27,440 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 43 ms
27,808 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 202 ms
30,256 KB
testcase_44 AC 79 ms
31,856 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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();
    }
}
0