結果

問題 No.555 世界史のレポート
ユーザー htensaihtensai
提出日時 2019-11-14 22:40:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 77,764 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-09-22 04:22:45
合計ジャッジ時間 5,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,004 KB
testcase_01 AC 116 ms
53,148 KB
testcase_02 AC 128 ms
54,252 KB
testcase_03 AC 129 ms
53,876 KB
testcase_04 AC 128 ms
54,264 KB
testcase_05 AC 125 ms
54,076 KB
testcase_06 AC 126 ms
54,164 KB
testcase_07 AC 126 ms
53,832 KB
testcase_08 AC 115 ms
52,736 KB
testcase_09 AC 126 ms
53,864 KB
testcase_10 AC 143 ms
53,900 KB
testcase_11 AC 137 ms
53,908 KB
testcase_12 AC 141 ms
54,040 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 140 ms
54,244 KB
testcase_16 AC 138 ms
53,964 KB
testcase_17 AC 140 ms
54,172 KB
testcase_18 AC 139 ms
54,112 KB
testcase_19 AC 130 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int c = sc.nextInt();
		int v = sc.nextInt();
		long[] dp = new long[n + 1];
		int[] counts = new int[n + 1];
		dp[1] = 0;
		counts[1] = 0;
		dp[2] = c + v;
		counts[2] = 1;
		for (int i = 3; i <= n; i++) {
		    long aValue = dp[(i + 1) / 2] + c + v;
		    int aCount = (i + 1) / 2;
		    int left = 1;
		    int right = i - 1;
		    while (right - left > 1) {
		        int m = (left + right) / 2;
		        if (m + counts[m] >= i) {
		            right = m;
		        } else {
		            left = m;
		        }
		    }
		    long bValue = dp[right] + v;
		    int bCount = counts[right];
		    if (aValue <= bValue) {
		        dp[i] = aValue;
		        counts[i] = aCount;
		    } else {
		        dp[i] = bValue;
		        counts[i] = bCount;
		    }
		}
		System.out.println(dp[n]);
	}
}
0