結果

問題 No.2029 Swap Min Max Min
ユーザー ks2mks2m
提出日時 2022-08-05 23:11:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 60,152 KB
最終ジャッジ日時 2024-09-15 20:45:32
合計ジャッジ時間 14,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
38,008 KB
testcase_01 AC 70 ms
37,928 KB
testcase_02 AC 70 ms
38,156 KB
testcase_03 AC 269 ms
51,500 KB
testcase_04 AC 168 ms
43,360 KB
testcase_05 AC 202 ms
46,176 KB
testcase_06 AC 267 ms
52,268 KB
testcase_07 AC 277 ms
52,076 KB
testcase_08 AC 336 ms
57,332 KB
testcase_09 AC 197 ms
46,692 KB
testcase_10 AC 177 ms
42,936 KB
testcase_11 AC 218 ms
46,472 KB
testcase_12 AC 244 ms
49,568 KB
testcase_13 AC 346 ms
57,284 KB
testcase_14 AC 342 ms
55,288 KB
testcase_15 AC 341 ms
58,920 KB
testcase_16 AC 333 ms
54,200 KB
testcase_17 AC 353 ms
56,904 KB
testcase_18 AC 360 ms
60,152 KB
testcase_19 AC 331 ms
54,500 KB
testcase_20 AC 341 ms
54,808 KB
testcase_21 AC 334 ms
55,120 KB
testcase_22 AC 333 ms
54,444 KB
testcase_23 AC 362 ms
60,024 KB
testcase_24 AC 341 ms
59,560 KB
testcase_25 AC 344 ms
55,780 KB
testcase_26 AC 329 ms
54,896 KB
testcase_27 AC 68 ms
37,824 KB
testcase_28 AC 78 ms
37,936 KB
testcase_29 AC 74 ms
38,020 KB
testcase_30 AC 76 ms
37,836 KB
testcase_31 AC 86 ms
37,952 KB
testcase_32 AC 76 ms
38,012 KB
testcase_33 AC 72 ms
38,108 KB
testcase_34 AC 72 ms
37,980 KB
testcase_35 AC 71 ms
37,964 KB
testcase_36 AC 73 ms
38,008 KB
testcase_37 AC 70 ms
37,744 KB
testcase_38 AC 381 ms
58,580 KB
testcase_39 AC 333 ms
54,648 KB
testcase_40 AC 330 ms
57,612 KB
testcase_41 AC 342 ms
57,552 KB
testcase_42 AC 351 ms
57,584 KB
testcase_43 AC 329 ms
55,096 KB
testcase_44 AC 342 ms
59,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int n2 = n / 2;
		System.out.print(n2 + " ");
		if (n % 2 == 1) {
			long ans = 0;
			int idx = 1;
			for (int i = 0; i < n; i++) {
				if (a[i] <= n2) {
					ans += Math.abs(idx - i);
					idx += 2;
				}
			}
			System.out.println(ans);

		} else {
			long[] dp1 = new long[n + 1];
			long[] dp2 = new long[n + 1];
			int idx1 = 0;
			int idx2 = 1;
			for (int i = 0; i < n; i++) {
				if (a[i] <= n2) {
					long v1 = dp1[i] + Math.abs(idx1 - i);
					long v2 = dp2[i] + Math.abs(idx1 - i);
					long v3 = dp2[i] + Math.abs(idx2 - i);
					dp1[i + 1] = Math.min(v1, v2);
					dp2[i + 1] = v3;
					idx1 += 2;
					idx2 += 2;
				} else {
					dp1[i + 1] = dp1[i];
					dp2[i + 1] = dp2[i];
				}
			}
			System.out.println(Math.min(dp1[n], dp2[n]));
		}
	}
}
0