結果

問題 No.2957 Combo Deck Builder
ユーザー ks2mks2m
提出日時 2024-11-08 22:36:26
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,433 bytes
コンパイル時間 3,975 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 90,164 KB
最終ジャッジ日時 2024-11-08 22:37:18
合計ジャッジ時間 38,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,452 KB
testcase_01 AC 53 ms
37,284 KB
testcase_02 AC 53 ms
37,420 KB
testcase_03 AC 58 ms
37,480 KB
testcase_04 AC 67 ms
37,968 KB
testcase_05 AC 55 ms
37,488 KB
testcase_06 AC 938 ms
66,760 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 999 ms
67,924 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 966 ms
68,748 KB
testcase_15 AC 998 ms
67,776 KB
testcase_16 AC 934 ms
68,048 KB
testcase_17 AC 968 ms
69,452 KB
testcase_18 AC 973 ms
68,472 KB
testcase_19 AC 963 ms
69,096 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 946 ms
69,540 KB
testcase_23 AC 975 ms
68,168 KB
testcase_24 AC 953 ms
68,132 KB
testcase_25 AC 931 ms
69,664 KB
testcase_26 TLE -
testcase_27 AC 949 ms
69,048 KB
testcase_28 TLE -
testcase_29 AC 942 ms
67,576 KB
testcase_30 AC 903 ms
82,392 KB
testcase_31 AC 819 ms
66,900 KB
testcase_32 AC 901 ms
70,136 KB
testcase_33 AC 756 ms
68,024 KB
testcase_34 AC 863 ms
80,852 KB
testcase_35 AC 870 ms
77,720 KB
testcase_36 AC 54 ms
37,340 KB
testcase_37 AC 53 ms
37,444 KB
testcase_38 AC 52 ms
37,476 KB
testcase_39 AC 56 ms
37,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.PriorityQueue;
import java.util.TreeSet;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		PriorityQueue<Obj> que1 = new PriorityQueue<>((o1, o2) -> o1.v - o2.v);
		PriorityQueue<Obj> que2 = new PriorityQueue<>((o1, o2) -> o2.v - o1.v);
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			Obj o = new Obj();
			o.c = Integer.parseInt(sa[0]);
			o.x = Integer.parseInt(sa[1]);
			o.y = Integer.parseInt(sa[2]);
			o.v = o.x - o.y;
			if (o.v < 0) {
				que1.add(o);
			} else {
				que2.add(o);
			}
		}
		br.close();

		TreeSet<Integer> set = new TreeSet<>();
		for (int i = 0; i < n; i++) {
			set.add(i);
		}
		long ans = 0;
		while (!que1.isEmpty()) {
			Obj o = que1.poll();
			Integer k = set.lower(o.c);
			if (k == null) {
				k = set.last();
				ans += o.x;
			} else {
				ans += o.y;
			}
			set.remove(k);
		}

		set.clear();
		for (int i = n - que2.size(); i < n; i++) {
			set.add(i);
		}

		while (!que2.isEmpty()) {
			Obj o = que2.poll();
			Integer k = set.ceiling(o.c);
			if (k == null) {
				k = set.first();
				ans += o.y;
			} else {
				ans += o.x;
			}
			set.remove(k);
		}
		System.out.println(ans);
	}

	static class Obj {
		int c, x, y, v;
	}
}
0