結果

問題 No.709 優勝可能性
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-06-29 23:53:48
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,362 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 114,196 KB
実行使用メモリ 59,228 KB
最終ジャッジ日時 2024-07-01 00:29:19
合計ジャッジ時間 6,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
28,008 KB
testcase_01 AC 33 ms
26,156 KB
testcase_02 AC 35 ms
28,256 KB
testcase_03 AC 34 ms
26,228 KB
testcase_04 AC 33 ms
26,356 KB
testcase_05 AC 34 ms
28,520 KB
testcase_06 AC 34 ms
26,332 KB
testcase_07 AC 33 ms
26,104 KB
testcase_08 AC 34 ms
26,356 KB
testcase_09 AC 35 ms
28,268 KB
testcase_10 TLE -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;

namespace _709
{
    class Program
    {
        static void Main(string[] args)
        {
            var first = Console.ReadLine().Split(' ').Select(int.Parse).ToList();
            var n = first[0];
            var m = first[1];

            // members[j]=能力jの最大値を有するメンバーの一覧
            // parameters[j]=能力jの最大値
            var members = Enumerable.Range(0, m).Select(_ => new List<int>()).ToList(); 
            var parameters = Enumerable.Repeat(0, m).ToList(); 
            for (int i = 0; i < n; i++)
            {
                var row = Console.ReadLine().Split(' ').Select(int.Parse).ToList();
                var candidates = new HashSet<int>();
                for (int j = 0; j < m; j++)
                {
                    if (parameters[j] < row[j])
                    {   
                        parameters[j] = row[j];
                        members[j].Clear();
                        members[j].Add(i);
                    }

                    if (parameters[j] == row[j])
                    {
                        members[j].Add(i);
                    }

                    candidates.UnionWith(members[j]);
                }

                Console.WriteLine(candidates.Count);
            }
        }
    }
}
0