結果
問題 | No.777 再帰的ケーキ |
ユーザー | tenten |
提出日時 | 2020-12-16 18:50:23 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,137 bytes |
コンパイル時間 | 2,502 ms |
コンパイル使用メモリ | 79,284 KB |
実行使用メモリ | 87,808 KB |
最終ジャッジ日時 | 2024-09-20 05:14:40 |
合計ジャッジ時間 | 26,904 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
41,596 KB |
testcase_01 | AC | 113 ms
41,268 KB |
testcase_02 | AC | 108 ms
39,984 KB |
testcase_03 | AC | 111 ms
40,352 KB |
testcase_04 | AC | 123 ms
41,408 KB |
testcase_05 | AC | 125 ms
41,408 KB |
testcase_06 | AC | 113 ms
40,208 KB |
testcase_07 | AC | 129 ms
41,244 KB |
testcase_08 | AC | 125 ms
41,072 KB |
testcase_09 | AC | 122 ms
41,116 KB |
testcase_10 | AC | 122 ms
41,324 KB |
testcase_11 | AC | 105 ms
39,852 KB |
testcase_12 | AC | 116 ms
41,364 KB |
testcase_13 | AC | 109 ms
40,144 KB |
testcase_14 | AC | 106 ms
40,148 KB |
testcase_15 | AC | 109 ms
40,048 KB |
testcase_16 | AC | 117 ms
40,736 KB |
testcase_17 | AC | 112 ms
41,452 KB |
testcase_18 | AC | 119 ms
41,428 KB |
testcase_19 | AC | 127 ms
41,500 KB |
testcase_20 | AC | 111 ms
39,808 KB |
testcase_21 | AC | 256 ms
46,716 KB |
testcase_22 | AC | 248 ms
46,636 KB |
testcase_23 | AC | 218 ms
45,484 KB |
testcase_24 | AC | 214 ms
45,932 KB |
testcase_25 | AC | 258 ms
46,860 KB |
testcase_26 | AC | 257 ms
46,720 KB |
testcase_27 | AC | 220 ms
46,156 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 1,489 ms
86,708 KB |
testcase_33 | AC | 1,105 ms
62,316 KB |
testcase_34 | AC | 1,228 ms
63,592 KB |
testcase_35 | TLE | - |
testcase_36 | AC | 1,724 ms
87,808 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); 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); Cake.doCompress(); int size = 1; long max = 0; BinaryIndexedTree bit = new BinaryIndexedTree(Cake.size); for (Cake c : cakes) { long next = bit.getMax(c.getIdx() - 1) + c.cal; max = Math.max(max, next); bit.set(c.getIdx(), next); } System.out.println(max); } static class Cake implements Comparable<Cake> { static int size = 1; static TreeMap<Integer, Integer> compress = new TreeMap<>(); static void doCompress() { for (int x : compress.keySet()) { compress.put(x, size); size++; } } int width; int height; int cal; public Cake(int width, int height, int cal) { this.width = width; this.height = height; this.cal = cal; compress.put(height, 0); } public int getIdx() { return compress.get(height); } public int compareTo(Cake another) { if (width == another.width) { return another.height - height; } else { return width - another.width; } } } } 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; } }