結果

問題 No.911 ラッキーソート
ユーザー ks2mks2m
提出日時 2019-10-18 23:46:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 1,699 bytes
コンパイル時間 3,239 ms
コンパイル使用メモリ 77,688 KB
実行使用メモリ 66,232 KB
最終ジャッジ日時 2024-06-25 20:03:47
合計ジャッジ時間 14,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,692 KB
testcase_01 AC 48 ms
37,080 KB
testcase_02 AC 49 ms
37,088 KB
testcase_03 AC 48 ms
37,016 KB
testcase_04 AC 48 ms
36,560 KB
testcase_05 AC 50 ms
37,168 KB
testcase_06 AC 50 ms
36,856 KB
testcase_07 AC 51 ms
37,104 KB
testcase_08 AC 51 ms
36,960 KB
testcase_09 AC 54 ms
36,984 KB
testcase_10 AC 49 ms
37,224 KB
testcase_11 AC 49 ms
36,740 KB
testcase_12 AC 50 ms
36,832 KB
testcase_13 AC 338 ms
65,616 KB
testcase_14 AC 350 ms
66,232 KB
testcase_15 AC 336 ms
65,620 KB
testcase_16 AC 361 ms
65,780 KB
testcase_17 AC 367 ms
65,844 KB
testcase_18 AC 354 ms
65,536 KB
testcase_19 AC 337 ms
65,924 KB
testcase_20 AC 346 ms
65,432 KB
testcase_21 AC 341 ms
65,668 KB
testcase_22 AC 341 ms
64,424 KB
testcase_23 AC 350 ms
64,600 KB
testcase_24 AC 322 ms
59,156 KB
testcase_25 AC 295 ms
54,996 KB
testcase_26 AC 243 ms
49,828 KB
testcase_27 AC 216 ms
45,348 KB
testcase_28 AC 160 ms
42,312 KB
testcase_29 AC 108 ms
39,180 KB
testcase_30 AC 63 ms
37,460 KB
testcase_31 AC 50 ms
37,084 KB
testcase_32 AC 49 ms
36,720 KB
testcase_33 AC 48 ms
36,852 KB
testcase_34 AC 48 ms
36,840 KB
testcase_35 AC 50 ms
37,096 KB
testcase_36 AC 52 ms
36,724 KB
testcase_37 AC 52 ms
36,800 KB
testcase_38 AC 348 ms
65,628 KB
testcase_39 AC 343 ms
65,392 KB
testcase_40 AC 110 ms
39,364 KB
testcase_41 AC 334 ms
66,188 KB
testcase_42 AC 371 ms
58,940 KB
testcase_43 AC 332 ms
65,680 KB
testcase_44 AC 327 ms
65,616 KB
testcase_45 AC 327 ms
65,744 KB
testcase_46 AC 324 ms
66,180 KB
testcase_47 AC 332 ms
66,060 KB
testcase_48 AC 327 ms
65,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

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

		int[] dp = new int[62];
		Arrays.fill(dp, 2);
		for (int i = 1; i < n; i++) {
			for (int j = 61; j >= 0; j--) {
				long x = a[i - 1] >> j & 1;
				long y = a[i] >> j & 1;
				if (x > y) {
					if (dp[j] == 0) {
						System.out.println(0);
						return;
					}
					dp[j] = 1;
					break;
				}
				if (x < y) {
					if (dp[j] == 1) {
						System.out.println(0);
						return;
					}
					dp[j] = 0;
					break;
				}
			}
		}

		long[][] bdp1 = bdp(dp, r);
		long[][] bdp2 = bdp(dp, l);
		System.out.println(bdp1[0][0] + bdp1[0][1] - bdp2[0][0] - bdp2[0][1]);
	}

	static long[][] bdp(int[] dp, long r) {
		long[][] bdp = new long[62][2];
		if (r < 0) {
			return bdp;
		}
		bdp[61][0] = 1;
		for (int j = 60; j >= 0; j--) {
			bdp[j][1] = bdp[j + 1][1];
			if (dp[j] == 0) {
				if ((r >> j & 1) == 0) {
					bdp[j][0] = bdp[j + 1][0];
				} else {
					bdp[j][1] += bdp[j + 1][0];
				}
			} else if (dp[j] == 1) {
				if ((r >> j & 1) == 1) {
					bdp[j][0] = bdp[j + 1][0];
				}
			} else {
				bdp[j][1] += bdp[j + 1][1];
				bdp[j][0] = bdp[j + 1][0];
				if ((r >> j & 1) == 1) {
					bdp[j][1] += bdp[j + 1][0];
				}
			}
		}
		return bdp;
	}
}
0