結果

問題 No.2623 Room Allocation
ユーザー tentententen
提出日時 2024-02-19 12:55:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 2,140 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 78,988 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2024-09-29 01:09:12
合計ジャッジ時間 12,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,300 KB
testcase_01 AC 54 ms
50,220 KB
testcase_02 AC 55 ms
50,312 KB
testcase_03 AC 54 ms
50,516 KB
testcase_04 AC 53 ms
50,644 KB
testcase_05 AC 53 ms
50,476 KB
testcase_06 AC 300 ms
60,904 KB
testcase_07 AC 312 ms
60,948 KB
testcase_08 AC 313 ms
61,036 KB
testcase_09 AC 288 ms
61,088 KB
testcase_10 AC 128 ms
64,164 KB
testcase_11 AC 129 ms
64,396 KB
testcase_12 AC 86 ms
56,380 KB
testcase_13 AC 89 ms
56,272 KB
testcase_14 AC 638 ms
78,504 KB
testcase_15 AC 345 ms
59,192 KB
testcase_16 AC 203 ms
55,248 KB
testcase_17 AC 88 ms
51,276 KB
testcase_18 AC 340 ms
58,892 KB
testcase_19 AC 355 ms
59,128 KB
testcase_20 AC 352 ms
58,892 KB
testcase_21 AC 356 ms
58,824 KB
testcase_22 AC 299 ms
58,804 KB
testcase_23 AC 239 ms
56,932 KB
testcase_24 AC 340 ms
58,888 KB
testcase_25 AC 300 ms
58,800 KB
testcase_26 AC 139 ms
54,764 KB
testcase_27 AC 747 ms
72,716 KB
testcase_28 AC 356 ms
65,768 KB
testcase_29 AC 276 ms
64,284 KB
testcase_30 AC 669 ms
70,924 KB
testcase_31 AC 167 ms
58,080 KB
testcase_32 AC 226 ms
68,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static List<Set<Integer>> graph;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        int y = sc.nextInt();
        Group[] groups = new Group[x + y];
        for (int i = 0; i < x + y; i++) {
            groups[i] = new Group();
        }
        for (int i = 0; i < n; i++) {
            int idx = i % (x + y);
            int count = sc.nextInt();
            char color = sc.next().charAt(0);
            if (color == 'A') {
                groups[idx].a += count;
            } else {
                groups[idx].b += count;
            }
        }
        Arrays.sort(groups);
        long ans = 0;
        for (int i = 0; i < x + y; i++) {
            if (i < x) {
                ans += groups[i].a;
            } else {
                ans += groups[i].b;
            }
        }
        System.out.println(ans);
    }
    
    static class Group implements Comparable<Group> {
        long a;
        long b;
        
        public int compareTo(Group another) {
            return Long.compare(b - a, another.b - another.a);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0