結果

問題 No.2623 Room Allocation
ユーザー halshals
提出日時 2024-02-29 17:33:06
言語 Julia
(1.10.2)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 1,359 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 309,640 KB
最終ジャッジ日時 2024-10-01 17:47:41
合計ジャッジ時間 27,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
269,168 KB
testcase_01 AC 589 ms
268,424 KB
testcase_02 AC 626 ms
268,800 KB
testcase_03 AC 597 ms
268,272 KB
testcase_04 AC 599 ms
268,292 KB
testcase_05 AC 601 ms
268,556 KB
testcase_06 AC 821 ms
295,728 KB
testcase_07 AC 818 ms
297,324 KB
testcase_08 AC 813 ms
295,168 KB
testcase_09 AC 820 ms
296,212 KB
testcase_10 AC 620 ms
281,400 KB
testcase_11 AC 600 ms
280,708 KB
testcase_12 AC 597 ms
274,540 KB
testcase_13 AC 619 ms
274,432 KB
testcase_14 AC 871 ms
309,640 KB
testcase_15 AC 841 ms
291,448 KB
testcase_16 AC 625 ms
283,040 KB
testcase_17 AC 597 ms
269,936 KB
testcase_18 AC 822 ms
290,696 KB
testcase_19 AC 824 ms
290,040 KB
testcase_20 AC 824 ms
290,752 KB
testcase_21 AC 880 ms
291,324 KB
testcase_22 AC 856 ms
290,628 KB
testcase_23 AC 779 ms
289,804 KB
testcase_24 AC 832 ms
291,384 KB
testcase_25 AC 809 ms
290,304 KB
testcase_26 AC 599 ms
272,408 KB
testcase_27 AC 869 ms
309,512 KB
testcase_28 AC 788 ms
296,840 KB
testcase_29 AC 628 ms
288,388 KB
testcase_30 AC 868 ms
306,304 KB
testcase_31 AC 602 ms
274,460 KB
testcase_32 AC 681 ms
284,288 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()
        p = int(p)
        if c == "A"
            wantA[(i-1)%(x+y)+1] += p
        else
            wantB[(i-1)%(x+y)+1] += 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)
debug(x...) = println(stderr, x...)
isfile("myinput.txt") && (mystdin = open("myinput.txt", "r"); redirect_stdin(mystdin))
main()
@isdefined(mystdin) && close(mystdin)
0