結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
271,724 KB
testcase_01 AC 635 ms
270,312 KB
testcase_02 AC 627 ms
269,736 KB
testcase_03 AC 627 ms
270,800 KB
testcase_04 AC 636 ms
269,772 KB
testcase_05 AC 643 ms
272,464 KB
testcase_06 AC 843 ms
298,804 KB
testcase_07 AC 841 ms
297,684 KB
testcase_08 AC 826 ms
297,020 KB
testcase_09 AC 844 ms
297,080 KB
testcase_10 AC 647 ms
281,888 KB
testcase_11 AC 644 ms
282,788 KB
testcase_12 AC 634 ms
277,716 KB
testcase_13 AC 630 ms
278,420 KB
testcase_14 AC 881 ms
313,340 KB
testcase_15 AC 854 ms
293,368 KB
testcase_16 AC 677 ms
284,168 KB
testcase_17 AC 642 ms
271,436 KB
testcase_18 AC 855 ms
291,988 KB
testcase_19 AC 855 ms
292,520 KB
testcase_20 AC 857 ms
292,492 KB
testcase_21 AC 870 ms
292,472 KB
testcase_22 AC 850 ms
290,348 KB
testcase_23 AC 812 ms
290,972 KB
testcase_24 AC 861 ms
292,404 KB
testcase_25 AC 830 ms
292,940 KB
testcase_26 AC 648 ms
273,948 KB
testcase_27 AC 895 ms
312,576 KB
testcase_28 AC 811 ms
298,728 KB
testcase_29 AC 685 ms
289,368 KB
testcase_30 AC 903 ms
308,564 KB
testcase_31 AC 660 ms
276,836 KB
testcase_32 AC 673 ms
287,224 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)
debug(x...) = println(stderr, x...)
if abspath(PROGRAM_FILE) == @__FILE__
    main()
else
    mystdin = joinpath(abspath(@__DIR__), "myinput.txt")
    mystdout = stdout
    redirect_stdio(stdin=mystdin, stdout=mystdout) do
        main()
    end
end
0