結果

問題 No.469 区間加算と一致検索の問題
ユーザー te-shte-sh
提出日時 2017-12-12 12:46:43
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 476 ms / 5,000 ms
コード長 1,355 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 167,476 KB
実行使用メモリ 44,596 KB
最終ジャッジ日時 2024-06-12 23:01:35
合計ジャッジ時間 24,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
36,372 KB
testcase_01 AC 311 ms
35,688 KB
testcase_02 AC 351 ms
38,960 KB
testcase_03 AC 318 ms
38,668 KB
testcase_04 AC 318 ms
37,796 KB
testcase_05 AC 318 ms
38,384 KB
testcase_06 AC 323 ms
38,972 KB
testcase_07 AC 325 ms
38,924 KB
testcase_08 AC 318 ms
39,204 KB
testcase_09 AC 321 ms
39,108 KB
testcase_10 AC 318 ms
37,980 KB
testcase_11 AC 320 ms
37,852 KB
testcase_12 AC 323 ms
38,648 KB
testcase_13 AC 317 ms
37,468 KB
testcase_14 AC 315 ms
37,876 KB
testcase_15 AC 323 ms
38,556 KB
testcase_16 AC 321 ms
38,712 KB
testcase_17 AC 321 ms
39,600 KB
testcase_18 AC 315 ms
40,848 KB
testcase_19 AC 320 ms
38,216 KB
testcase_20 AC 321 ms
38,640 KB
testcase_21 AC 315 ms
38,436 KB
testcase_22 AC 315 ms
38,416 KB
testcase_23 AC 352 ms
41,872 KB
testcase_24 AC 342 ms
41,336 KB
testcase_25 AC 337 ms
40,692 KB
testcase_26 AC 353 ms
44,296 KB
testcase_27 AC 346 ms
43,708 KB
testcase_28 AC 345 ms
44,092 KB
testcase_29 AC 348 ms
42,532 KB
testcase_30 AC 347 ms
44,596 KB
testcase_31 AC 346 ms
41,212 KB
testcase_32 AC 345 ms
41,896 KB
testcase_33 AC 474 ms
40,628 KB
testcase_34 AC 469 ms
41,476 KB
testcase_35 AC 463 ms
42,472 KB
testcase_36 AC 467 ms
41,676 KB
testcase_37 AC 463 ms
42,468 KB
testcase_38 AC 467 ms
42,452 KB
testcase_39 AC 470 ms
42,764 KB
testcase_40 AC 467 ms
42,928 KB
testcase_41 AC 464 ms
42,812 KB
testcase_42 AC 476 ms
40,436 KB
testcase_43 AC 466 ms
40,192 KB
testcase_44 AC 475 ms
42,508 KB
testcase_45 AC 471 ms
42,072 KB
testcase_46 AC 473 ms
42,152 KB
testcase_47 AC 466 ms
40,296 KB
testcase_48 AC 324 ms
35,256 KB
testcase_49 AC 318 ms
36,428 KB
testcase_50 AC 462 ms
40,412 KB
testcase_51 AC 466 ms
40,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.random;

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], q = rd[1];

  auto p = primes!int(5*10^^7)[10000..$];
  auto b = p.randomSample(n).array;

  auto bc = new long[](n+1);
  foreach (i; 0..n) bc[i+1] = bc[i] + b[i];

  int[long] h;
  h[0] = 0;

  auto curr = 0L;
  foreach (i; 0..q) {
    auto line = readln.chomp;
    if (line[0] == '?') {
      writeln(h[curr]);
    } else {
      auto rd2 = line[2..$].splitter;
      auto l = rd2.front.to!int; rd2.popFront();
      auto r = rd2.front.to!int; rd2.popFront();
      auto k = rd2.front.to!int;
      curr += (bc[r] - bc[l]) * k;
      if (curr !in h)
        h[curr] = i+1;
    }
  }
}

pure T[] primes(T)(T n)
{
  import std.algorithm, std.bitmanip, std.conv, std.range;

  auto sieve = BitArray();
  sieve.length((n + 1) / 2);
  sieve = ~sieve;

  foreach (p; 1..((nsqrt(n) - 1) / 2 + 1))
    if (sieve[p])
      for (auto q = p * 3 + 1; q < (n + 1) / 2; q += p * 2 + 1)
        sieve[q] = false;

  auto r = sieve.bitsSet.map!(to!T).map!("a * 2 + 1").array;
  r[0] = 2;

  return r;
}

pure T nsqrt(T)(T n)
{
  import std.algorithm, std.conv, std.range, core.bitop;
  if (n <= 1) return n;
  T m = 1 << (n.bsr / 2 + 1);
  return iota(1, m).map!"a * a".assumeSorted!"a <= b".lowerBound(n).length.to!T;
}
0