結果

問題 No.709 優勝可能性
ユーザー bluemeganebluemegane
提出日時 2018-09-27 10:11:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 799 ms / 3,500 ms
コード長 1,544 bytes
コンパイル時間 2,761 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 29,056 KB
最終ジャッジ日時 2024-10-12 04:27:14
合計ジャッジ時間 12,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
17,792 KB
testcase_01 AC 24 ms
17,792 KB
testcase_02 AC 25 ms
17,792 KB
testcase_03 AC 24 ms
17,664 KB
testcase_04 AC 24 ms
17,664 KB
testcase_05 AC 25 ms
17,792 KB
testcase_06 AC 25 ms
17,920 KB
testcase_07 AC 25 ms
17,792 KB
testcase_08 AC 25 ms
17,792 KB
testcase_09 AC 24 ms
17,920 KB
testcase_10 AC 590 ms
21,892 KB
testcase_11 AC 519 ms
21,860 KB
testcase_12 AC 733 ms
22,180 KB
testcase_13 AC 770 ms
21,880 KB
testcase_14 AC 738 ms
21,748 KB
testcase_15 AC 718 ms
21,744 KB
testcase_16 AC 698 ms
22,784 KB
testcase_17 AC 711 ms
29,056 KB
testcase_18 AC 24 ms
17,664 KB
testcase_19 AC 25 ms
17,664 KB
testcase_20 AC 799 ms
21,988 KB
testcase_21 AC 796 ms
21,856 KB
testcase_22 AC 25 ms
17,920 KB
testcase_23 AC 25 ms
17,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var max = new int[m];
        var a = new List<int>[m];
        for (int i = 0; i < m; i++) a[i] = new List<int>();
        line = Console.ReadLine().Trim().Split(' ');
        var b = Array.ConvertAll(line, int.Parse);
        for (int i = 0; i < m; i++)
        {
            max[i] = b[i];
            a[i].Add(0);
        }
        var pa = new int[n];
        pa[0] = m;
        var ans = 1;
        Console.WriteLine(ans);
        for (int i = 1; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            b = Array.ConvertAll(line, int.Parse);
            for (int j = 0; j < m; j++)
            {
                if (b[j] > max[j])
                {
                    foreach (var x in a[j])
                    {
                        pa[x]--;
                        if (pa[x] == 0) ans--;
                    }
                    a[j].Clear();
                    a[j].Add(i);
                    max[j] = b[j];
                    pa[i]++;
                    if (pa[i] == 1) ans++;
                }
                else if (b[j] == max[j])
                {
                    a[j].Add(i);
                    pa[i]++;
                    if (pa[i] == 1) ans++;
                }
            }
        Console.WriteLine(ans);
        }
    }
}
0