結果

問題 No.777 再帰的ケーキ
ユーザー 37zigen37zigen
提出日時 2018-10-07 04:26:54
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,704 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 79,884 KB
実行使用メモリ 81,200 KB
最終ジャッジ日時 2024-04-29 21:22:50
合計ジャッジ時間 11,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,036 KB
testcase_01 AC 122 ms
40,132 KB
testcase_02 AC 130 ms
41,320 KB
testcase_03 AC 119 ms
39,876 KB
testcase_04 AC 129 ms
41,084 KB
testcase_05 AC 122 ms
40,696 KB
testcase_06 AC 135 ms
41,432 KB
testcase_07 AC 134 ms
41,520 KB
testcase_08 AC 135 ms
41,328 KB
testcase_09 AC 129 ms
41,296 KB
testcase_10 AC 129 ms
41,204 KB
testcase_11 AC 127 ms
41,076 KB
testcase_12 AC 130 ms
41,440 KB
testcase_13 AC 118 ms
39,784 KB
testcase_14 AC 127 ms
40,208 KB
testcase_15 AC 130 ms
41,168 KB
testcase_16 AC 126 ms
41,392 KB
testcase_17 AC 128 ms
41,428 KB
testcase_18 AC 129 ms
40,364 KB
testcase_19 AC 122 ms
40,012 KB
testcase_20 AC 121 ms
40,320 KB
testcase_21 AC 252 ms
46,100 KB
testcase_22 AC 256 ms
46,892 KB
testcase_23 AC 214 ms
45,640 KB
testcase_24 AC 215 ms
45,812 KB
testcase_25 AC 271 ms
46,352 KB
testcase_26 AC 261 ms
47,004 KB
testcase_27 AC 238 ms
45,996 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,339 ms
72,816 KB
testcase_33 AC 1,229 ms
66,776 KB
testcase_34 AC 1,368 ms
73,684 KB
testcase_35 TLE -
testcase_36 AC 1,573 ms
73,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

class Main {

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		PrintWriter pw = new PrintWriter(System.out);
		int[][] v = new int[N][3];
		for (int i = 0; i < N; ++i) {
			v[i][0] = sc.nextInt();
			v[i][1] = sc.nextInt();
			v[i][2] = sc.nextInt();
			--v[i][0];
			--v[i][1];
		}
		compress(v);
		Arrays.sort(v, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				if (o1[0] != o2[0]) {
					return Integer.compare(o1[0], o2[0]);
				} else {
					return -Integer.compare(o1[1], o2[1]);
				}
			}
		});

		SegmentTree seg = new SegmentTree(N + 1);
		for (int i = 0; i < N; ++i) {
			long val = seg.query(0, v[i][1]);
			seg.update(v[i][1], val + v[i][2]);
		}
		pw.println(seg.query(0, N + 1));
		pw.close();
	}

	void compress(int[][] a) {
		int n = a.length;
		int[][] tmp = new int[n][4];
		for (int i = 0; i < n; ++i) {
			for (int j = 0; j < a[i].length; ++j) {
				tmp[i][j] = a[i][j];
			}
			tmp[i][3] = i;
		}
		Arrays.sort(tmp, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				return Integer.compare(o1[0], o2[0]);
			}
		});

		int p = 0;
		for (int i = 0; i < n; ++i) {
			if (i + 1 < n && tmp[i][0] != tmp[i + 1][0]) {
				tmp[i][0] = p++;
			} else {
				tmp[i][0] = p;
			}
		}
		Arrays.sort(tmp, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				return Integer.compare(o1[1], o2[1]);
			}
		});
		p = 0;
		for (int i = 0; i < n; ++i) {
			if (i + 1 < n && tmp[i][1] != tmp[i + 1][1]) {
				tmp[i][1] = p++;
			} else {
				tmp[i][1] = p;
			}
		}
		for (int i = 0; i < n; ++i) {
			for (int j = 0; j < 3; ++j) {
				a[tmp[i][3]][j] = tmp[i][j];
			}
		}
	}

	class SegmentTree {
		int n;
		long[] v;

		public SegmentTree(int n_) {
			n = 1;
			while (n < n_) {
				n *= 2;
			}
			v = new long[2 * n - 1];
		}

		void update(int k, long val) {
			k += n - 1;
			v[k] = Math.max(v[k], val);
			while (k > 0) {
				k = (k - 1) / 2;
				v[k] = Math.max(v[2 * k + 1], v[2 * k + 2]);
			}
		}

		long query(int a, int b) {
			return query(0, n, a, b, 0);
		}

		long query(int l, int r, int a, int b, int k) {
			if (r <= a || b <= l)
				return 0;
			else if (a <= l && r <= b)
				return v[k];
			else {
				return Math.max(query(l, (l + r) / 2, a, b, 2 * k + 1), query((l + r) / 2, r, a, b, 2 * k + 2));
			}
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}
}
0