結果

問題 No.409 ダイエット
ユーザー GrenacheGrenache
提出日時 2018-03-01 17:44:45
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 7,783 bytes
コンパイル時間 6,217 ms
コンパイル使用メモリ 88,792 KB
実行使用メモリ 103,436 KB
最終ジャッジ日時 2023-09-08 17:43:08
合計ジャッジ時間 48,706 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
34,364 KB
testcase_01 AC 48 ms
34,400 KB
testcase_02 AC 47 ms
34,344 KB
testcase_03 AC 48 ms
34,216 KB
testcase_04 AC 49 ms
34,968 KB
testcase_05 AC 49 ms
34,632 KB
testcase_06 AC 48 ms
34,612 KB
testcase_07 AC 49 ms
34,864 KB
testcase_08 AC 48 ms
34,400 KB
testcase_09 AC 48 ms
34,340 KB
testcase_10 AC 49 ms
34,688 KB
testcase_11 AC 49 ms
34,616 KB
testcase_12 AC 47 ms
34,272 KB
testcase_13 AC 48 ms
34,588 KB
testcase_14 AC 48 ms
34,464 KB
testcase_15 AC 47 ms
34,448 KB
testcase_16 AC 49 ms
34,268 KB
testcase_17 AC 49 ms
34,392 KB
testcase_18 AC 49 ms
34,464 KB
testcase_19 AC 48 ms
34,248 KB
testcase_20 AC 48 ms
34,588 KB
testcase_21 AC 48 ms
34,340 KB
testcase_22 AC 48 ms
34,448 KB
testcase_23 AC 48 ms
34,444 KB
testcase_24 AC 48 ms
34,404 KB
testcase_25 AC 48 ms
34,976 KB
testcase_26 AC 53 ms
34,284 KB
testcase_27 AC 49 ms
34,668 KB
testcase_28 AC 48 ms
34,672 KB
testcase_29 AC 47 ms
34,380 KB
testcase_30 AC 47 ms
34,360 KB
testcase_31 AC 49 ms
34,772 KB
testcase_32 AC 47 ms
34,248 KB
testcase_33 AC 48 ms
34,216 KB
testcase_34 AC 50 ms
34,360 KB
testcase_35 AC 128 ms
38,972 KB
testcase_36 AC 131 ms
37,992 KB
testcase_37 AC 130 ms
38,564 KB
testcase_38 AC 126 ms
37,708 KB
testcase_39 AC 127 ms
38,736 KB
testcase_40 AC 131 ms
38,648 KB
testcase_41 AC 135 ms
38,752 KB
testcase_42 AC 138 ms
37,916 KB
testcase_43 AC 130 ms
38,384 KB
testcase_44 AC 135 ms
39,332 KB
testcase_45 AC 132 ms
38,516 KB
testcase_46 AC 138 ms
38,152 KB
testcase_47 AC 131 ms
38,256 KB
testcase_48 AC 133 ms
37,904 KB
testcase_49 AC 129 ms
38,876 KB
testcase_50 AC 132 ms
38,068 KB
testcase_51 AC 127 ms
37,964 KB
testcase_52 AC 128 ms
37,896 KB
testcase_53 AC 128 ms
37,912 KB
testcase_54 AC 129 ms
38,536 KB
testcase_55 AC 705 ms
73,624 KB
testcase_56 AC 326 ms
57,732 KB
testcase_57 AC 1,017 ms
101,060 KB
testcase_58 AC 854 ms
71,808 KB
testcase_59 AC 888 ms
72,856 KB
testcase_60 AC 604 ms
66,248 KB
testcase_61 AC 947 ms
94,604 KB
testcase_62 AC 1,022 ms
102,288 KB
testcase_63 AC 954 ms
90,068 KB
testcase_64 AC 832 ms
72,636 KB
testcase_65 AC 976 ms
76,364 KB
testcase_66 AC 1,088 ms
93,500 KB
testcase_67 AC 890 ms
88,488 KB
testcase_68 AC 868 ms
74,732 KB
testcase_69 AC 1,026 ms
87,256 KB
testcase_70 AC 988 ms
91,012 KB
testcase_71 AC 761 ms
69,480 KB
testcase_72 AC 1,095 ms
103,436 KB
testcase_73 AC 1,119 ms
85,808 KB
testcase_74 AC 818 ms
76,384 KB
testcase_75 AC 1,040 ms
86,396 KB
testcase_76 AC 879 ms
80,380 KB
testcase_77 AC 719 ms
64,960 KB
testcase_78 AC 710 ms
70,868 KB
testcase_79 AC 626 ms
68,120 KB
testcase_80 AC 982 ms
98,964 KB
testcase_81 AC 1,017 ms
83,980 KB
testcase_82 AC 963 ms
84,456 KB
testcase_83 AC 972 ms
83,768 KB
testcase_84 AC 958 ms
70,288 KB
testcase_85 AC 269 ms
43,660 KB
testcase_86 AC 843 ms
71,656 KB
testcase_87 WA -
testcase_88 AC 832 ms
62,708 KB
testcase_89 AC 993 ms
65,236 KB
testcase_90 AC 754 ms
57,636 KB
testcase_91 AC 866 ms
66,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder409 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		long a = sc.nextInt();
		long b = sc.nextInt();
		long w = sc.nextInt();

		int[] d = new int[n];
		for (int i = 0; i < n; i++) {
			d[i] = sc.nextInt();
		}

		long[] dp = new long[n + 1];
		ConvexHullTrick cht = new ConvexHullTrick(n);
		for (int i = 1; i <= n; i++) {
			int j = i - 1;
			cht.add(-b * j, dp[j] + a * j + b * j * (j + 1) / 2);
			dp[i] = cht.query(i) + d[i - 1] - a * (i - 1) + b * i * (i - 1) / 2;
		}

		long ans = Long.MAX_VALUE;
		for (int i = 0; i <= n; i++) {
			long tmp = dp[i] - a * (n - i) + b * (n - i) * (n - i + 1) / 2;
//			pr.printf("%d %d %d\n", i, tmp, ans);
			ans = Math.min(ans, tmp);
		}

		pr.println(ans + w);
	}

	private static class ConvexHullTrick {
//		int n;

		int cnt;
		long[] aa;
		long[] bb;
//		long[] dn;
//		long[] dd;
		double[] dd;
		NavigableSet<Integer> f;
		NavigableSet<Integer> d;

		ConvexHullTrick(int n) {
//			this.n = n;

			cnt = 0;
			aa = new long[n];
			bb = new long[n];
//			dn = new long[n + 1];
//			dd = new long[n + 1];
			dd = new double[n + 1];
			f = new TreeSet<>((x, y) -> {return aa[x] == aa[y] ? Long.compare(bb[x], bb[y]) : Long.compare(aa[y], aa[x]);});
			d = new TreeSet<>((x, y) -> {return Double.compare(dd[x], dd[y]);});
		}

		private void add(long a, long b) {
			aa[cnt] = a;
			bb[cnt] = b;

			int curr = cnt++;

			if (f.contains(curr)) {
				return;
			}

			Integer prev = f.lower(curr);
			Integer next = f.higher(curr);

			if (!check(prev, curr, next)) {
				return;
			}

			while (prev != null) {
				Integer pprev = f.lower(prev);
				if (check(pprev, prev, curr)) {
					break;
				}

				f.remove(prev);
				d.remove(prev);
				prev = pprev;
			}

			while (next != null) {
				Integer nnext = f.higher(next);
				if (check(curr, next, nnext)) {
					break;
				}

				f.remove(next);
				d.remove(next);
				next = nnext;
			}

			if (prev == null) {
				dd[curr] = Double.NEGATIVE_INFINITY;
				f.add(curr);
				d.add(curr);
			} else {
				dd[curr] = (double)(bb[curr] - bb[prev]) / (aa[prev] - aa[curr]);
				f.add(curr);
				d.add(curr);
			}

			if (next != null) {
				d.remove(next);
				dd[next] = (double)(bb[next] - bb[curr]) / (aa[curr] - aa[next]);
				d.add(next);
			}
		}

		private long query(long x) {
			dd[cnt] = (double)x;

			Integer mini = d.lower(cnt);

			if (mini == null) {
				pr.printf("%d %f\n", x, dd[cnt]);
				pr.flush();
			}

			return fx(mini, x);
		}

		private long fx(int i, long x) {
			return aa[i] * x + bb[i];
		}

		private boolean check(Integer prev, Integer curr, Integer next) {
			if (prev == null || next == null) {
				return true;
			}

			return bb[next] * aa[prev] - bb[prev] * aa[next] > aa[curr] * bb[next] - aa[curr] * bb[prev] + bb[curr] * aa[prev] - bb[curr] * aa[next];
			/*
			BigInteger LMAX = BigInteger.valueOf(Long.MAX_VALUE);
			BigInteger a1 = BigInteger.valueOf(aa[prev]);
			BigInteger a2 = BigInteger.valueOf(aa[curr]);
			BigInteger a3 = BigInteger.valueOf(aa[next]);
			BigInteger b1 = BigInteger.valueOf(bb[prev]);
			BigInteger b2 = BigInteger.valueOf(bb[curr]);
			BigInteger b3 = BigInteger.valueOf(bb[next]);
			if (b3.multiply(a1).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", b3, a1);
			}
			if (b1.multiply(a3).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", b1, a3);
			}
			if (a2.multiply(b3).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", a2, b3);
			}
			if (a2.multiply(b1).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", a2, b1);
			}
			if (b2.multiply(a1).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", b2, a1);
			}
			if (b2.multiply(a3).abs().compareTo(LMAX) > 0) {
				pr.printf("Overflow : %s %s\n", b2, a3);
			}
			return b3.multiply(a1).subtract(b1.multiply(a3)).compareTo(a2.multiply(b3).subtract(a2.multiply(b1)).add(b2.multiply(a1)).subtract(b2.multiply(a3))) > 0;
			*/
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		private boolean isPrintable(int ch) {
			return ch >= '!' && ch <= '~';
		}

		private boolean isCRLF(int ch) {
			return ch == '\n' || ch == '\r' || ch == -1;
		}

		private int nextPrintable() {
			try {
				int ch;
				while (!isPrintable(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}

				return ch;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		String next() {
			try {
				int ch = nextPrintable();
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (isPrintable(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		int nextInt() {
			try {
				// parseInt from Integer.parseInt()
				boolean negative = false;
				int res = 0;
				int limit = -Integer.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Integer.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				int multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		long nextLong() {
			try {
				// parseLong from Long.parseLong()
				boolean negative = false;
				long res = 0;
				long limit = -Long.MAX_VALUE;
				int radix = 10;

				int fc = nextPrintable();
				if (fc < '0') {
					if (fc == '-') {
						negative = true;
						limit = Long.MIN_VALUE;
					} else if (fc != '+') {
						throw new NumberFormatException();
					}
					fc = br.read();
				}
				long multmin = limit / radix;

				int ch = fc;
				do {
					int digit = ch - '0';
					if (digit < 0 || digit >= radix) {
						throw new NumberFormatException();
					}
					if (res < multmin) {
						throw new NumberFormatException();
					}
					res *= radix;
					if (res < limit + digit) {
						throw new NumberFormatException();
					}
					res -= digit;

				} while (isPrintable(ch = br.read()));

				return negative ? res : -res;
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		float nextFloat() {
			return Float.parseFloat(next());
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		String nextLine() {
			try {
				int ch;
				while (isCRLF(ch = br.read())) {
					if (ch == -1) {
						throw new NoSuchElementException();
					}
				}
				StringBuilder sb = new StringBuilder();
				do {
					sb.appendCodePoint(ch);
				} while (!isCRLF(ch = br.read()));

				return sb.toString();
			} catch (IOException e) {
				throw new NoSuchElementException();
			}
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new NoSuchElementException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0