結果

問題 No.2623 Room Allocation
ユーザー halshals
提出日時 2024-02-29 17:37:14
言語 Julia
(1.10.2)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 310,060 KB
最終ジャッジ日時 2024-10-01 17:48:09
合計ジャッジ時間 27,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 613 ms
269,588 KB
testcase_01 AC 621 ms
269,056 KB
testcase_02 AC 615 ms
270,156 KB
testcase_03 AC 611 ms
272,528 KB
testcase_04 AC 618 ms
271,580 KB
testcase_05 AC 621 ms
270,216 KB
testcase_06 AC 832 ms
297,764 KB
testcase_07 AC 821 ms
296,864 KB
testcase_08 AC 817 ms
296,360 KB
testcase_09 AC 818 ms
297,400 KB
testcase_10 AC 627 ms
282,992 KB
testcase_11 AC 623 ms
284,440 KB
testcase_12 AC 617 ms
276,088 KB
testcase_13 AC 621 ms
275,744 KB
testcase_14 AC 846 ms
309,172 KB
testcase_15 AC 846 ms
292,152 KB
testcase_16 AC 654 ms
285,524 KB
testcase_17 AC 626 ms
271,388 KB
testcase_18 AC 844 ms
292,816 KB
testcase_19 AC 844 ms
292,604 KB
testcase_20 AC 866 ms
290,336 KB
testcase_21 AC 839 ms
292,080 KB
testcase_22 AC 821 ms
292,132 KB
testcase_23 AC 773 ms
292,192 KB
testcase_24 AC 839 ms
290,120 KB
testcase_25 AC 830 ms
291,900 KB
testcase_26 AC 638 ms
274,112 KB
testcase_27 AC 877 ms
310,060 KB
testcase_28 AC 786 ms
298,080 KB
testcase_29 AC 640 ms
289,160 KB
testcase_30 AC 855 ms
308,904 KB
testcase_31 AC 609 ms
276,348 KB
testcase_32 AC 648 ms
284,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    n, x, y = int(inputs())
    wantA = zeros(Int, x + y)
    wantB = zeros(Int, x + y)
    for i = 1:n
        p, c = inputs()
        if c == "A"
            wantA[(i-1)%(x+y)+1] += int(p)
        else
            wantB[(i-1)%(x+y)+1] += int(p)
        end
    end
    ans = 0
    tmp = [(abs(wantA[i] - wantB[i]), i) for i = 1:x+y]
    sort!(tmp, by=x -> x[1], rev=true)
    ischecked = falses(x + y)
    for (_, group) = tmp
        if ischecked[group]
            continue
        end
        ischecked[group] = true
        if wantA[group] > wantB[group]
            if x > 0
                ans += wantA[group]
                x -= 1
            else
                ans += wantB[group]
                y -= 1
            end
        else
            if y > 0
                ans += wantB[group]
                y -= 1
            else
                ans += wantA[group]
                x -= 1
            end
        end
    end
    println(ans)
end
# --------input func----------
input() = readline()
inputs() = split(readline())
int(s::AbstractChar) = parse(Int, s)
int(s::AbstractString) = parse(Int, s)
int(v::AbstractArray) = map(x -> parse(Int, x), v)
main()
0