結果

問題 No.409 ダイエット
ユーザー 37zigen37zigen
提出日時 2016-08-07 01:18:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 4,794 bytes
コンパイル時間 3,096 ms
コンパイル使用メモリ 89,412 KB
実行使用メモリ 47,552 KB
最終ジャッジ日時 2024-04-24 19:40:43
合計ジャッジ時間 20,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,224 KB
testcase_01 AC 109 ms
40,052 KB
testcase_02 AC 118 ms
41,012 KB
testcase_03 AC 116 ms
41,164 KB
testcase_04 AC 106 ms
40,088 KB
testcase_05 AC 106 ms
39,912 KB
testcase_06 AC 113 ms
40,844 KB
testcase_07 AC 108 ms
40,464 KB
testcase_08 AC 111 ms
40,852 KB
testcase_09 AC 112 ms
41,196 KB
testcase_10 AC 110 ms
40,712 KB
testcase_11 AC 119 ms
41,300 KB
testcase_12 AC 115 ms
41,484 KB
testcase_13 AC 108 ms
40,712 KB
testcase_14 AC 103 ms
40,300 KB
testcase_15 AC 122 ms
40,968 KB
testcase_16 AC 104 ms
39,488 KB
testcase_17 AC 119 ms
41,172 KB
testcase_18 AC 114 ms
40,676 KB
testcase_19 AC 122 ms
41,192 KB
testcase_20 AC 112 ms
40,432 KB
testcase_21 AC 112 ms
40,716 KB
testcase_22 AC 117 ms
41,304 KB
testcase_23 AC 115 ms
41,116 KB
testcase_24 AC 104 ms
40,472 KB
testcase_25 AC 111 ms
40,420 KB
testcase_26 AC 106 ms
39,920 KB
testcase_27 AC 109 ms
40,856 KB
testcase_28 AC 110 ms
40,672 KB
testcase_29 AC 113 ms
41,140 KB
testcase_30 AC 112 ms
41,356 KB
testcase_31 AC 113 ms
41,028 KB
testcase_32 AC 106 ms
40,716 KB
testcase_33 AC 106 ms
40,032 KB
testcase_34 AC 111 ms
40,716 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 234 ms
47,156 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Main{
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";

	public static void main(String[] args) throws Exception {
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);

		solver();
		out.flush();
	}

	static long nl() {
		try {
			long num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc() {
		try {
			int b = skip();
			if (b == -1)
				return 0;
			return (char) b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd() {
		try {
			return Double.parseDouble(ns());
		} catch (Exception e) {
		}
		return 0;
	}

	static String ns() {
		try {
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if (b == -1)
				return "";
			sb.append((char) b);
			while (true) {
				b = is.read();
				if (b == -1)
					return sb.toString();
				if (b <= ' ')
					return sb.toString();
				sb.append((char) b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n) {
		char[] buf = new char[n];
		try {
			int b = skip(), p = 0;
			if (b == -1)
				return null;
			buf[p++] = (char) b;
			while (p < n) {
				b = is.read();
				if (b == -1 || b <= ' ')
					break;
				buf[p++] = (char) b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n) {
		byte[] buf = new byte[n];
		try {
			int b = skip();
			if (b == -1)
				return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException {
		int b;
		while ((b = is.read()) != -1 && !(b >= 33 && b <= 126))
			;
		return b;
	}

	static boolean eof() {
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni() {
		try {
			int num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = ni();// the duration
		int a = ni();// the effet of fasting
		int b = ni();// the effect of stress
		int w = ni();// current weight
		int[] d = new int[n];
		for (int i = 0; i < n; i++) {
			d[i] = ni();
		}
		/*
		 * F[0]=W F[k]=D[k]+min(F[i]+(k-i-1)*(k-i)/2*B-(k-i-1)*A) (0<=i<=k-1)
		 * 
		 * answer:min(F[i]-(n-i)*A+1/2*(n-i)(n-i+1)*B) (0<=i<=n)
		 * 
		 * F[k]=D[k]-(k-1)*A+(k-1)*k/2*B+min(F[i]+-ikB+i*(i+1)/2*B+iA)
		 */
		int[] deq = new int[n + 3];
		long[] F = new long[n + 1];
		F[0] = w;

		int s = 0;
		int t = 1;
		for (int i = 1; i <= n; i++) {
			while(s+1<t&&f(deq[s],i,d,b,a,F)>=f(deq[s+1],i,d,b,a,F))s++;
			F[i] = f(deq[s],i, d, b, a, F) + d[i - 1] - (i - 1) * a + (i * i - i) / 2 * b;
			while (s + 1 < t && check(deq[t - 2], deq[t - 1], i, b, F, a))
				t--;
			deq[t++] = i;
		}
		long ans=1<<60;
		for(int i=0;i<=n;i++){
			long D=n-i;
			ans=Math.min(ans, F[i]+(long)b*((long)D+1)*(long)D/2-(long)a*(long)D);
		}
		System.out.println(ans);

	}

	static class Pair {
		long a, b;

		Pair(long a, long b) {
			this.a = a;
			this.b = b;
		}
	}

	static boolean check(int k1, int k2, int k3, int b, long[] F, int a) {
		long a1 = -(long)k1 * (long)b;
		long a2 = -(long)k2 * (long)b;
		long a3 = -(long)k3 * (long)b;
		long b1 = F[k1] + (long)k1 * (long)a + ((long)k1 *(long) k1 +(long) k1) / 2 * (long)b;
		long b2 = F[k2] + (long)k2 * (long)a + ((long)k2 * (long)k2 + (long)k2) / 2 * (long)b;
		long b3 = F[k3] + (long)k3 *(long) a + ((long)k3 * (long)k3 + (long)k3) / 2 * (long)b;
		return ((long)a2 - (long)a1) * ((long)b3 - (long)b1) >= ((long)b1 - (long)b2) * ((long)a1 - (long)a3);
	}

	static long f(int j, int x, int[] d, int b, int a, long[] F) {
		return -(long)j * (long)b * (long)x + F[j] + (long)j *(long) a + ((long)j * (long)j + (long)j) / 2 * (long)b;
	}
	static void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0