結果
問題 | No.777 再帰的ケーキ |
ユーザー | tenten |
提出日時 | 2023-06-16 13:27:26 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,196 ms / 2,000 ms |
コード長 | 2,704 bytes |
コンパイル時間 | 3,008 ms |
コンパイル使用メモリ | 89,180 KB |
実行使用メモリ | 80,708 KB |
最終ジャッジ日時 | 2024-06-24 07:14:05 |
合計ジャッジ時間 | 15,542 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
49,864 KB |
testcase_01 | AC | 55 ms
50,332 KB |
testcase_02 | AC | 54 ms
50,228 KB |
testcase_03 | AC | 56 ms
50,240 KB |
testcase_04 | AC | 55 ms
50,284 KB |
testcase_05 | AC | 55 ms
50,484 KB |
testcase_06 | AC | 54 ms
49,896 KB |
testcase_07 | AC | 56 ms
50,444 KB |
testcase_08 | AC | 56 ms
50,304 KB |
testcase_09 | AC | 56 ms
50,104 KB |
testcase_10 | AC | 57 ms
50,272 KB |
testcase_11 | AC | 58 ms
50,240 KB |
testcase_12 | AC | 57 ms
50,336 KB |
testcase_13 | AC | 56 ms
50,136 KB |
testcase_14 | AC | 57 ms
50,288 KB |
testcase_15 | AC | 56 ms
50,148 KB |
testcase_16 | AC | 55 ms
50,320 KB |
testcase_17 | AC | 57 ms
50,404 KB |
testcase_18 | AC | 57 ms
50,168 KB |
testcase_19 | AC | 57 ms
50,228 KB |
testcase_20 | AC | 56 ms
49,788 KB |
testcase_21 | AC | 147 ms
53,428 KB |
testcase_22 | AC | 152 ms
53,272 KB |
testcase_23 | AC | 104 ms
51,212 KB |
testcase_24 | AC | 93 ms
51,640 KB |
testcase_25 | AC | 144 ms
53,920 KB |
testcase_26 | AC | 151 ms
53,304 KB |
testcase_27 | AC | 125 ms
52,244 KB |
testcase_28 | AC | 1,056 ms
64,096 KB |
testcase_29 | AC | 1,016 ms
63,020 KB |
testcase_30 | AC | 1,196 ms
63,620 KB |
testcase_31 | AC | 1,109 ms
63,548 KB |
testcase_32 | AC | 749 ms
80,140 KB |
testcase_33 | AC | 452 ms
60,512 KB |
testcase_34 | AC | 468 ms
62,792 KB |
testcase_35 | AC | 1,112 ms
63,856 KB |
testcase_36 | AC | 751 ms
80,708 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); Cake[] cakes = new Cake[n]; for (int i = 0; i < n; i++) { cakes[i] = new Cake(sc.nextInt(), sc.nextInt(), sc.nextInt()); } Arrays.sort(cakes); TreeMap<Integer, Long> ans = new TreeMap<>(); ans.put(Integer.MAX_VALUE, 0L); for (Cake x : cakes) { long next = ans.higherEntry(x.b).getValue() + x.value; if (ans.getOrDefault(x.b, 0L) >= next) { continue; } ans.put(x.b, next); Integer key = x.b; while ((key = ans.lowerKey(key)) != null) { if (ans.get(key) > next) { break; } ans.remove(key); } } System.out.println(ans.firstEntry().getValue()); } static class Cake implements Comparable<Cake> { int a; int b; int value; public Cake(int a, int b, int value) { this.a = a; this.b = b; this.value = value; } public int compareTo(Cake another) { if (a == another.a) { return b - another.b; } else { return another.a - a; } } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }