結果

問題 No.2623 Room Allocation
ユーザー kakel-sankakel-san
提出日時 2024-02-09 22:40:38
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 8,531 ms
コンパイル使用メモリ 167,660 KB
実行使用メモリ 193,176 KB
最終ジャッジ日時 2024-09-28 15:51:57
合計ジャッジ時間 14,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
30,336 KB
testcase_01 AC 52 ms
30,708 KB
testcase_02 AC 55 ms
30,592 KB
testcase_03 AC 54 ms
30,336 KB
testcase_04 AC 51 ms
30,208 KB
testcase_05 AC 48 ms
30,336 KB
testcase_06 AC 159 ms
64,228 KB
testcase_07 AC 164 ms
64,604 KB
testcase_08 AC 161 ms
64,468 KB
testcase_09 AC 163 ms
64,480 KB
testcase_10 AC 207 ms
38,084 KB
testcase_11 AC 196 ms
37,960 KB
testcase_12 AC 131 ms
34,752 KB
testcase_13 AC 130 ms
35,120 KB
testcase_14 AC 287 ms
71,116 KB
testcase_15 AC 135 ms
61,160 KB
testcase_16 AC 79 ms
39,424 KB
testcase_17 AC 50 ms
30,848 KB
testcase_18 AC 135 ms
61,288 KB
testcase_19 AC 128 ms
61,068 KB
testcase_20 AC 128 ms
61,372 KB
testcase_21 AC 134 ms
61,288 KB
testcase_22 AC 109 ms
55,272 KB
testcase_23 AC 94 ms
45,176 KB
testcase_24 AC 135 ms
61,156 KB
testcase_25 AC 126 ms
60,860 KB
testcase_26 AC 69 ms
34,176 KB
testcase_27 AC 280 ms
69,188 KB
testcase_28 AC 179 ms
46,336 KB
testcase_29 AC 160 ms
40,572 KB
testcase_30 AC 267 ms
68,776 KB
testcase_31 AC 94 ms
34,676 KB
testcase_32 AC 161 ms
193,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (78 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, x, y) = (c[0], c[1], c[2]);
        var query = SList(n);
        var arr = new Pair[x + y];
        for (var i = 0; i < n; ++i)
        {
            var s = query[i].Split();
            var p = int.Parse(s[0]);
            if (s[1] == "A") arr[i % (x + y)].A += p;
            else arr[i % (x + y)].B += p;
        }
        Array.Sort(arr, (l, r) => (l.B - l.A).CompareTo(r.B - r.A));
        var ans = 0L;
        for (var i = 0; i < x; ++i) ans += arr[i].A;
        for (var i = x; i < arr.Length; ++i) ans += arr[i].B;
        WriteLine(ans);
    }
    struct Pair
    {
        public long A;
        public long B;
    }
}
0