結果

問題 No.469 区間加算と一致検索の問題
ユーザー 37zigen37zigen
提出日時 2016-12-20 12:41:10
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,494 bytes
コンパイル時間 3,789 ms
コンパイル使用メモリ 79,748 KB
実行使用メモリ 107,656 KB
最終ジャッジ日時 2024-12-14 11:20:25
合計ジャッジ時間 43,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,248 KB
testcase_01 AC 153 ms
54,460 KB
testcase_02 AC 163 ms
58,384 KB
testcase_03 AC 325 ms
59,516 KB
testcase_04 AC 337 ms
59,640 KB
testcase_05 AC 359 ms
59,492 KB
testcase_06 AC 380 ms
59,512 KB
testcase_07 AC 394 ms
59,576 KB
testcase_08 AC 408 ms
59,796 KB
testcase_09 AC 297 ms
58,732 KB
testcase_10 AC 383 ms
59,536 KB
testcase_11 AC 278 ms
58,360 KB
testcase_12 AC 416 ms
59,828 KB
testcase_13 AC 342 ms
59,548 KB
testcase_14 AC 262 ms
58,432 KB
testcase_15 AC 283 ms
59,032 KB
testcase_16 AC 387 ms
59,420 KB
testcase_17 AC 381 ms
59,764 KB
testcase_18 AC 375 ms
59,588 KB
testcase_19 AC 251 ms
58,188 KB
testcase_20 AC 401 ms
59,732 KB
testcase_21 AC 274 ms
58,544 KB
testcase_22 AC 218 ms
55,200 KB
testcase_23 AC 834 ms
68,348 KB
testcase_24 WA -
testcase_25 AC 832 ms
67,384 KB
testcase_26 AC 829 ms
68,436 KB
testcase_27 AC 855 ms
68,664 KB
testcase_28 AC 831 ms
68,560 KB
testcase_29 AC 789 ms
68,288 KB
testcase_30 WA -
testcase_31 AC 824 ms
68,240 KB
testcase_32 AC 846 ms
68,740 KB
testcase_33 AC 1,334 ms
105,644 KB
testcase_34 AC 1,346 ms
107,656 KB
testcase_35 AC 1,311 ms
105,768 KB
testcase_36 AC 1,323 ms
105,784 KB
testcase_37 WA -
testcase_38 AC 1,295 ms
105,004 KB
testcase_39 AC 1,377 ms
106,124 KB
testcase_40 AC 1,301 ms
106,520 KB
testcase_41 AC 1,315 ms
104,956 KB
testcase_42 AC 1,285 ms
104,748 KB
testcase_43 AC 1,283 ms
106,356 KB
testcase_44 AC 1,293 ms
106,340 KB
testcase_45 AC 1,263 ms
106,520 KB
testcase_46 WA -
testcase_47 AC 1,373 ms
106,364 KB
testcase_48 AC 182 ms
54,548 KB
testcase_49 AC 157 ms
54,452 KB
testcase_50 WA -
testcase_51 AC 1,359 ms
105,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.PrintWriter;
import java.math.BigInteger;
import java.util.HashMap;
import java.util.Random;
import java.util.Scanner;

public class Q469 {
	public static void main(String[] args) {
		PrintWriter pw = new PrintWriter(System.out);
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int q = sc.nextInt();
		Random rand = new Random();
		long p2 = 1_000_000_000 + 7;
		long m2 = 1_000_000_000 + 9;
		long p1 = BigInteger.probablePrime(30, rand).longValue();
		long m1 = BigInteger.probablePrime(30, rand).longValue();
		long[] pow1 = new long[n];
		long[] pow2 = new long[n];
		pow1[0] = 1;
		pow2[0] = 1;
		for (int i = 1; i < n; ++i) {
			pow1[i] = pow1[i - 1] * p1 % m1;
			pow2[i] = pow2[i - 1] * p2 % m2;
		}
		long[] accum1 = new long[n];
		long[] accum2 = new long[n];
		accum1[0] = pow1[0];
		accum2[0] = pow2[0];
		for (int i = 1; i < n; ++i) {
			accum1[i] = (accum1[i - 1] + pow1[i]) % m1;
			accum2[i] = accum2[i - 1] + pow2[i];
		}

		HashMap<Long, Integer> map = new HashMap<>();
		map.put(0L, 0);
		long h1 = 0;
		for (int query = 0; query < q; ++query) {
			String s = sc.next();
			if (s.equals("!")) {
				int l = sc.nextInt();
				int r = sc.nextInt();
				int k = sc.nextInt();
				h1 += (accum1[r - 1] - (l > 0 ? accum1[l - 1] : 0)) * k % m1;
				while (h1 < 0)
					h1 += m1;
				h1 %= m1;
				if (!map.containsKey(h1)) {
					map.put(h1, query + 1);
				}
			} else {
				pw.println(map.get(h1));
			}
		}
		pw.close();
	}
}
0