結果
問題 | No.777 再帰的ケーキ |
ユーザー | tenten |
提出日時 | 2020-12-16 18:34:59 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,819 bytes |
コンパイル時間 | 2,909 ms |
コンパイル使用メモリ | 80,260 KB |
実行使用メモリ | 123,708 KB |
最終ジャッジ日時 | 2024-09-20 05:13:50 |
合計ジャッジ時間 | 12,695 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
46,664 KB |
testcase_01 | AC | 138 ms
41,124 KB |
testcase_02 | AC | 136 ms
41,420 KB |
testcase_03 | AC | 124 ms
39,804 KB |
testcase_04 | AC | 135 ms
41,088 KB |
testcase_05 | AC | 121 ms
41,380 KB |
testcase_06 | AC | 141 ms
41,432 KB |
testcase_07 | AC | 146 ms
41,336 KB |
testcase_08 | AC | 140 ms
41,304 KB |
testcase_09 | AC | 122 ms
40,176 KB |
testcase_10 | AC | 136 ms
41,340 KB |
testcase_11 | AC | 133 ms
40,924 KB |
testcase_12 | AC | 121 ms
41,300 KB |
testcase_13 | AC | 122 ms
41,536 KB |
testcase_14 | AC | 134 ms
41,068 KB |
testcase_15 | AC | 138 ms
41,124 KB |
testcase_16 | AC | 134 ms
41,376 KB |
testcase_17 | AC | 134 ms
41,196 KB |
testcase_18 | AC | 140 ms
41,288 KB |
testcase_19 | AC | 130 ms
40,312 KB |
testcase_20 | AC | 144 ms
41,452 KB |
testcase_21 | AC | 276 ms
46,384 KB |
testcase_22 | AC | 275 ms
47,348 KB |
testcase_23 | AC | 220 ms
45,228 KB |
testcase_24 | AC | 227 ms
45,320 KB |
testcase_25 | AC | 284 ms
46,568 KB |
testcase_26 | AC | 290 ms
46,304 KB |
testcase_27 | AC | 244 ms
45,888 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); TreeMap<Integer, TreeMap<Integer, Integer>> cakes = new TreeMap<>(); TreeMap<Integer, Integer> compress = new TreeMap<>(); for (int i = 0; i < n; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); if (!cakes.containsKey(a)) { cakes.put(a, new TreeMap<>()); } if (!cakes.get(a).containsKey(-b) || cakes.get(a).get(-b) < c) { cakes.get(a).put(-b, c); compress.put(b, 0); } } int size = 1; for (int x : compress.keySet()) { compress.put(x, size); size++; } long max = 0; BinaryIndexedTree bit = new BinaryIndexedTree(size); for (TreeMap<Integer, Integer> one : cakes.values()) { for (int x : one.keySet()) { int idx = compress.get(-x); long next = bit.getMax(idx - 1) + one.get(x); max = Math.max(max, next); bit.set(idx, next); } } System.out.println(max); } } class BinaryIndexedTree { int size; long[] tree; public BinaryIndexedTree(int size) { this.size = size; tree = new long[size]; } public void set(int idx, long value) { int mask = 1; while (idx < size) { if ((idx & mask) != 0) { tree[idx] = Math.max(tree[idx], value); idx += mask; } mask <<= 1; } } public long getMax(int x) { int mask = 1; long ans = 0; while (x > 0) { if ((x & mask) != 0) { ans = Math.max(ans, tree[x]); x -= mask; } mask <<= 1; } return ans; } }