結果

問題 No.2623 Room Allocation
ユーザー halshals
提出日時 2024-02-29 17:30:44
言語 Julia
(1.10.2)
結果
AC  
実行時間 1,289 ms / 2,000 ms
コード長 1,521 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 308,080 KB
最終ジャッジ日時 2024-10-01 17:45:44
合計ジャッジ時間 29,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
260,668 KB
testcase_01 AC 597 ms
260,040 KB
testcase_02 AC 599 ms
259,824 KB
testcase_03 AC 584 ms
259,508 KB
testcase_04 AC 593 ms
260,108 KB
testcase_05 AC 603 ms
259,728 KB
testcase_06 AC 896 ms
293,980 KB
testcase_07 AC 906 ms
293,576 KB
testcase_08 AC 836 ms
296,436 KB
testcase_09 AC 901 ms
293,840 KB
testcase_10 AC 863 ms
306,524 KB
testcase_11 AC 870 ms
306,456 KB
testcase_12 AC 664 ms
287,596 KB
testcase_13 AC 656 ms
287,812 KB
testcase_14 AC 990 ms
308,080 KB
testcase_15 AC 810 ms
289,244 KB
testcase_16 AC 631 ms
274,804 KB
testcase_17 AC 606 ms
260,352 KB
testcase_18 AC 820 ms
290,088 KB
testcase_19 AC 820 ms
290,004 KB
testcase_20 AC 829 ms
288,908 KB
testcase_21 AC 829 ms
288,536 KB
testcase_22 AC 817 ms
288,996 KB
testcase_23 AC 652 ms
285,312 KB
testcase_24 AC 836 ms
288,604 KB
testcase_25 AC 810 ms
288,840 KB
testcase_26 AC 613 ms
264,128 KB
testcase_27 AC 1,289 ms
305,204 KB
testcase_28 AC 1,001 ms
290,900 KB
testcase_29 AC 967 ms
286,048 KB
testcase_30 AC 1,182 ms
300,088 KB
testcase_31 AC 675 ms
274,728 KB
testcase_32 AC 1,024 ms
287,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    n, x, y = int(inputs())
    wantA_by_group = zeros(Int, x + y)
    wantB_by_group = zeros(Int, x + y)
    for i = 1:n
        p, c = inputs()
        p = int(p)
        if c == "A"
            wantA_by_group[(i-1)%(x+y)+1] += p
        else
            wantB_by_group[(i-1)%(x+y)+1] += p
        end
    end
    ans = 0
    tmp = []
    for i = 1:x+y
        push!(tmp, (abs(wantA_by_group[i] - wantB_by_group[i]), i))
    end
    sort!(tmp, by=x -> x[1], rev=true)
    ischecked = falses(x + y)
    for i = 1:x+y
        val, group = tmp[i]
        if ischecked[group]
            continue
        end
        ischecked[group] = true
        if wantA_by_group[group] > wantB_by_group[group]
            if x > 0
                ans += wantA_by_group[group]
                x -= 1
            else
                ans += wantB_by_group[group]
                y -= 1
            end
        else
            if y > 0
                ans += wantB_by_group[group]
                y -= 1
            else
                ans += wantA_by_group[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