結果

問題 No.2680 研究室配属
ユーザー tobisatistobisatis
提出日時 2024-03-20 23:21:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 2,166 bytes
コンパイル時間 8,417 ms
コンパイル使用メモリ 169,688 KB
実行使用メモリ 218,972 KB
最終ジャッジ日時 2024-09-30 09:26:18
合計ジャッジ時間 11,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,208 KB
testcase_01 AC 53 ms
30,080 KB
testcase_02 AC 52 ms
30,336 KB
testcase_03 AC 53 ms
30,336 KB
testcase_04 AC 50 ms
30,208 KB
testcase_05 AC 66 ms
33,280 KB
testcase_06 AC 71 ms
33,792 KB
testcase_07 AC 68 ms
33,536 KB
testcase_08 AC 67 ms
33,536 KB
testcase_09 AC 64 ms
32,896 KB
testcase_10 AC 79 ms
40,448 KB
testcase_11 AC 78 ms
40,320 KB
testcase_12 AC 84 ms
42,752 KB
testcase_13 AC 80 ms
39,552 KB
testcase_14 AC 89 ms
44,032 KB
testcase_15 AC 71 ms
33,664 KB
testcase_16 AC 115 ms
57,856 KB
testcase_17 AC 77 ms
36,608 KB
testcase_18 AC 99 ms
48,512 KB
testcase_19 AC 125 ms
57,856 KB
testcase_20 AC 114 ms
58,340 KB
testcase_21 AC 69 ms
34,560 KB
testcase_22 AC 102 ms
52,864 KB
testcase_23 AC 147 ms
59,004 KB
testcase_24 AC 151 ms
59,008 KB
testcase_25 AC 163 ms
218,972 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (82 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var m = Int();
        var az = m.Repeat(Int);
        var qz = n.Repeat(() => new Queue<int>());
        for (var i = 0; i < n; i++)
        {
            var q = qz[i];
            for (var j = 0; j < m; j++) q.Enqueue(Int());
        }
        var dd = new bool[n];
        var ans = new int[n];
        for (var j = 0; j < m; j++)
        {
            for (var i = 0; i < n; i++)
            {
                if (dd[i]) continue;
                var t = qz[i].Dequeue();
                if (az[t] == 0) continue;
                az[t]--;
                ans[i] = t;
                dd[i] = true;
            }
        }
        Out(ans, " ");
        return null;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    #pragma warning disable IDE0051
    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
    #pragma warning restore IDE0051
}
0