結果

問題 No.777 再帰的ケーキ
ユーザー tentententen
提出日時 2020-12-16 18:57:35
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,466 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 80,008 KB
実行使用メモリ 92,264 KB
最終ジャッジ日時 2024-09-20 05:15:28
合計ジャッジ時間 17,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,880 KB
testcase_01 AC 56 ms
36,852 KB
testcase_02 AC 54 ms
36,984 KB
testcase_03 AC 54 ms
37,164 KB
testcase_04 AC 54 ms
36,592 KB
testcase_05 AC 54 ms
37,184 KB
testcase_06 AC 55 ms
37,100 KB
testcase_07 AC 56 ms
36,840 KB
testcase_08 AC 55 ms
36,924 KB
testcase_09 AC 54 ms
36,836 KB
testcase_10 AC 55 ms
36,740 KB
testcase_11 AC 55 ms
36,832 KB
testcase_12 AC 54 ms
37,036 KB
testcase_13 AC 55 ms
37,064 KB
testcase_14 AC 54 ms
36,984 KB
testcase_15 AC 55 ms
37,056 KB
testcase_16 AC 54 ms
37,252 KB
testcase_17 AC 56 ms
36,624 KB
testcase_18 AC 56 ms
36,696 KB
testcase_19 AC 55 ms
37,152 KB
testcase_20 AC 55 ms
37,028 KB
testcase_21 AC 154 ms
41,160 KB
testcase_22 AC 159 ms
41,328 KB
testcase_23 AC 103 ms
38,964 KB
testcase_24 AC 92 ms
38,796 KB
testcase_25 AC 158 ms
40,692 KB
testcase_26 AC 158 ms
40,972 KB
testcase_27 AC 127 ms
40,528 KB
testcase_28 AC 1,979 ms
88,216 KB
testcase_29 TLE -
testcase_30 AC 1,868 ms
91,844 KB
testcase_31 AC 1,845 ms
92,264 KB
testcase_32 AC 877 ms
76,552 KB
testcase_33 AC 440 ms
49,724 KB
testcase_34 AC 520 ms
52,016 KB
testcase_35 AC 1,335 ms
64,980 KB
testcase_36 AC 893 ms
75,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

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());
		Cake[] cakes = new Cake[n];
		for (int i = 0; i < n; i++) {
		    cakes[i] = new Cake(br.readLine());
		}
		Arrays.sort(cakes);
		Cake.doCompress();
		int size = 1;
		long max = 0;
		BinaryIndexedTree bit = new BinaryIndexedTree(Cake.size);
		for (Cake c : cakes) {
		    int idx = c.getIdx();
		    long next = bit.getMax(idx - 1) + c.cal;
		    max = Math.max(max, next);
		    bit.set(idx, 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, Integer.MAX_VALUE);
	    }
	    
	    public Cake(String line) {
	        this(line.split(" ", 3));
	    }
	    
	    public Cake(String[] element) {
	        this(Integer.parseInt(element[0]), Integer.parseInt(element[1]), Integer.parseInt(element[2]));
	    }
	    
	    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;
    }
}
0