結果

問題 No.705 ゴミ拾い Hard
ユーザー 37zigen37zigen
提出日時 2018-07-01 06:23:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,842 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 66,128 KB
最終ジャッジ日時 2024-07-01 01:07:28
合計ジャッジ時間 12,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,972 KB
testcase_01 AC 53 ms
49,700 KB
testcase_02 AC 55 ms
49,908 KB
testcase_03 AC 54 ms
50,008 KB
testcase_04 AC 55 ms
49,968 KB
testcase_05 AC 53 ms
49,636 KB
testcase_06 AC 53 ms
49,980 KB
testcase_07 AC 54 ms
50,068 KB
testcase_08 AC 52 ms
50,028 KB
testcase_09 AC 52 ms
49,960 KB
testcase_10 AC 53 ms
49,908 KB
testcase_11 AC 52 ms
49,740 KB
testcase_12 AC 52 ms
49,940 KB
testcase_13 AC 53 ms
49,620 KB
testcase_14 AC 63 ms
50,056 KB
testcase_15 AC 67 ms
50,196 KB
testcase_16 AC 65 ms
50,332 KB
testcase_17 AC 65 ms
50,268 KB
testcase_18 AC 64 ms
50,256 KB
testcase_19 AC 64 ms
50,156 KB
testcase_20 WA -
testcase_21 AC 65 ms
50,112 KB
testcase_22 AC 65 ms
49,976 KB
testcase_23 AC 64 ms
50,280 KB
testcase_24 AC 436 ms
64,160 KB
testcase_25 AC 369 ms
63,796 KB
testcase_26 AC 383 ms
63,416 KB
testcase_27 AC 420 ms
63,680 KB
testcase_28 AC 407 ms
64,276 KB
testcase_29 AC 396 ms
63,636 KB
testcase_30 AC 353 ms
65,692 KB
testcase_31 AC 362 ms
63,244 KB
testcase_32 AC 352 ms
63,708 KB
testcase_33 AC 191 ms
64,616 KB
testcase_34 AC 217 ms
66,128 KB
testcase_35 AC 334 ms
63,056 KB
testcase_36 AC 276 ms
62,356 KB
testcase_37 AC 291 ms
62,596 KB
testcase_38 AC 300 ms
62,680 KB
testcase_39 WA -
testcase_40 AC 54 ms
49,804 KB
testcase_41 AC 54 ms
49,784 KB
testcase_42 AC 54 ms
49,908 KB
testcase_43 AC 302 ms
62,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.NoSuchElementException;

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();
		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<>();
		for (int i = 0; i < N; ++i) {
			// d[i]を求める
			while (dq.size() >= 2 && second(dq).i <= i) {
				dq.pollFirst();
			}
			if (!dq.isEmpty() && f(i, dq.peekLast().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);
			while (true) {
				if (dq.isEmpty()) {
					throw new AssertionError();
				}
				int ok = N;
				int ng = i;
				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 (i < j)
			throw new AssertionError();
		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_;
		}
	}

	class Scanner {
		private final InputStream in = System.in;
		private final byte[] buffer = new byte[1024];
		private int ptr = 0;
		private int buflen = 0;

		private boolean hasNextByte() {
			if (ptr < buflen) {
				return true;
			} else {
				ptr = 0;
				try {
					buflen = in.read(buffer);
				} catch (IOException e) {
					e.printStackTrace();
				}
				if (buflen <= 0) {
					return false;
				}
			}
			return true;
		}

		private int readByte() {
			if (hasNextByte())
				return buffer[ptr++];
			else
				return -1;
		}

		private boolean isPrintableChar(int c) {
			return 33 <= c && c <= 126;
		}

		private void skipUnprintable() {
			while (hasNextByte() && !isPrintableChar(buffer[ptr]))
				ptr++;
		}

		public boolean hasNext() {
			skipUnprintable();
			return hasNextByte();
		}

		public String next() {
			if (!hasNext())
				throw new NoSuchElementException();
			StringBuilder sb = new StringBuilder();
			int b = readByte();
			while (isPrintableChar(b)) {
				sb.appendCodePoint(b);
				b = readByte();
			}
			return sb.toString();
		}

		public long nextLong() {
			if (!hasNext())
				throw new NoSuchElementException();
			long n = 0;
			boolean minus = false;
			int b = readByte();
			if (b == '-') {
				minus = true;
				b = readByte();
			}
			if (b < '0' || '9' < b) {
				throw new NumberFormatException();
			}
			while (true) {
				if ('0' <= b && b <= '9') {
					n *= 10;
					n += b - '0';
				} else if (b == -1 || !isPrintableChar(b)) {
					return minus ? -n : n;
				} else {
					throw new NumberFormatException();
				}
				b = readByte();
			}
		}

		int nextInt() {
			return (int) nextLong();
		}
	}

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