結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー ks2mks2m
提出日時 2020-08-07 22:00:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,182 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 79,044 KB
実行使用メモリ 62,476 KB
最終ジャッジ日時 2024-09-24 20:08:26
合計ジャッジ時間 10,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,548 KB
testcase_01 AC 53 ms
50,404 KB
testcase_02 AC 53 ms
50,132 KB
testcase_03 AC 54 ms
50,500 KB
testcase_04 AC 54 ms
50,384 KB
testcase_05 AC 54 ms
50,020 KB
testcase_06 AC 54 ms
50,332 KB
testcase_07 AC 53 ms
50,152 KB
testcase_08 AC 54 ms
50,364 KB
testcase_09 AC 54 ms
50,496 KB
testcase_10 AC 53 ms
50,220 KB
testcase_11 AC 54 ms
50,012 KB
testcase_12 AC 53 ms
50,244 KB
testcase_13 AC 53 ms
50,248 KB
testcase_14 AC 53 ms
50,368 KB
testcase_15 AC 53 ms
50,316 KB
testcase_16 AC 53 ms
50,592 KB
testcase_17 AC 53 ms
50,000 KB
testcase_18 AC 54 ms
50,336 KB
testcase_19 AC 53 ms
50,332 KB
testcase_20 AC 54 ms
50,552 KB
testcase_21 AC 53 ms
50,268 KB
testcase_22 AC 224 ms
60,580 KB
testcase_23 AC 230 ms
60,632 KB
testcase_24 AC 216 ms
60,672 KB
testcase_25 AC 228 ms
60,424 KB
testcase_26 AC 234 ms
60,540 KB
testcase_27 AC 220 ms
60,540 KB
testcase_28 AC 233 ms
60,528 KB
testcase_29 AC 230 ms
60,600 KB
testcase_30 AC 235 ms
60,584 KB
testcase_31 AC 228 ms
60,336 KB
testcase_32 AC 219 ms
60,596 KB
testcase_33 AC 229 ms
60,652 KB
testcase_34 AC 229 ms
60,820 KB
testcase_35 AC 229 ms
60,700 KB
testcase_36 AC 234 ms
60,608 KB
testcase_37 AC 228 ms
60,632 KB
testcase_38 AC 218 ms
60,568 KB
testcase_39 AC 235 ms
60,572 KB
testcase_40 AC 227 ms
60,612 KB
testcase_41 AC 225 ms
60,656 KB
testcase_42 AC 221 ms
60,488 KB
testcase_43 AC 215 ms
62,476 KB
testcase_44 AC 237 ms
60,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Collections;
import java.util.PriorityQueue;

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 s = Integer.parseInt(sa[0]) - 1;
		int t = Integer.parseInt(sa[1]) - 1;
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long x = 0;
		long y = 0;
		PriorityQueue<Integer> que = new PriorityQueue<>(Collections.reverseOrder());
		for (int i = 0; i < n; i++) {
			int ds = Math.min(Math.min(Math.abs(i - s), Math.abs(n + i - s)),
					Math.abs(n + s - i));
			int dt = Math.min(Math.min(Math.abs(i - t), Math.abs(n + i - t)),
					Math.abs(n + t - i));
			if (ds < dt) x += a[i];
			if (ds > dt) y += a[i];
			if (ds == dt) que.add(a[i]);
		}
		boolean fs = true;
		while (!que.isEmpty()) {
			if (fs) {
				x += que.poll();
			} else {
				y += que.poll();
			}
			fs = !fs;
		}
		System.out.println(x - y);
	}
}
0