結果

問題 No.705 ゴミ拾い Hard
ユーザー 37zigen37zigen
提出日時 2018-07-01 04:18:11
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,071 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 79,560 KB
実行使用メモリ 84,092 KB
最終ジャッジ日時 2024-07-01 01:06:08
合計ジャッジ時間 38,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,984 KB
testcase_01 AC 137 ms
53,952 KB
testcase_02 AC 139 ms
53,924 KB
testcase_03 AC 140 ms
54,064 KB
testcase_04 AC 138 ms
53,944 KB
testcase_05 AC 139 ms
54,068 KB
testcase_06 AC 138 ms
54,364 KB
testcase_07 AC 139 ms
54,384 KB
testcase_08 RE -
testcase_09 AC 138 ms
53,936 KB
testcase_10 AC 139 ms
54,220 KB
testcase_11 AC 139 ms
53,960 KB
testcase_12 AC 139 ms
53,976 KB
testcase_13 RE -
testcase_14 AC 220 ms
56,868 KB
testcase_15 AC 221 ms
56,848 KB
testcase_16 AC 211 ms
57,108 KB
testcase_17 AC 221 ms
56,792 KB
testcase_18 RE -
testcase_19 AC 216 ms
56,832 KB
testcase_20 WA -
testcase_21 AC 219 ms
56,692 KB
testcase_22 AC 222 ms
56,848 KB
testcase_23 AC 228 ms
56,772 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 RE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,385 ms
81,604 KB
testcase_34 AC 1,410 ms
81,696 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 RE -
testcase_40 AC 136 ms
54,080 KB
testcase_41 AC 135 ms
53,888 KB
testcase_42 AC 135 ms
54,120 KB
testcase_43 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {

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

	int N;
	long[] A, X, Y;
	long[] D;

	void run() {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		A = new long[N];
		X = new long[N];
		Y = new long[N];
		D = new long[N];
		Arrays.fill(D, Long.MAX_VALUE / 3);
		for (int i = 0; i < N; ++i) {
			A[i] = sc.nextLong();
		}
		for (int i = 0; i < N; ++i) {
			X[i] = sc.nextLong();
		}
		for (int i = 0; i < N; ++i) {
			Y[i] = sc.nextLong();
		}
		// d[i]=min_{j<=i}(d[j-1]+cost[j,i])
		ArrayDeque<P> dq = new ArrayDeque<>();
		dq.add(new P(0, 0));
		for (int i = 0; i < N; ++i) {
			// d[i]を求める
			while (dq.size() >= 2 && second(dq).i <= i) {
				dq.pollFirst();
			}
			if (dq.size() > 0 && f(i, dq.peekFirst().j) >= f(i, i)) {
				dq.pollLast();
			}
			if (dq.isEmpty()) {
				dq.addLast(new P(i, i));
				D[i] = f(i, i);
				continue;
			}
			D[i] = f(i, dq.peekFirst().j);
			if (i == 0)
				continue;
			while (true) {
				int ok = N;
				int ng = i - 1;
				while (ok - ng > 1) {
					int m = (ok + ng) / 2;
					if (f(m, i) <= f(m, dq.peekLast().j)) {
						ok = m;
					} else {
						ng = m;
					}
				}
				if (ok > dq.peekLast().i) {
					if (ok < N)
						dq.addLast(new P(ok, i));
					break;
				} else {
					dq.pollLast();
				}
			}
		}
		System.out.println(D[N - 1]);
	}

	P second(ArrayDeque<P> dq) {
		if (dq.size() < 2)
			throw new AssertionError();
		P tmp = dq.pollFirst();
		P ret = new P(dq.peekFirst().i, dq.peekFirst().j);
		dq.addFirst(tmp);
		return ret;
	}

	long cost(int from, int to) {
		long dx = Math.abs(X[from] - A[to]);
		long dy = Math.abs(Y[from]);
		return dx * dx * dx + dy * dy * dy;
	}

	long f(int i, int j) {
		if (j > 0 && D[j - 1] == -1)
			throw new AssertionError();
		return (j > 0 ? D[j - 1] : 0) + cost(j, i);
	}

	class P {
		int i, j;

		public P(int i_, int j_) {
			i = i_;
			j = j_;
		}
	}

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