結果

問題 No.1036 Make One With GCD 2
ユーザー ikdikd
提出日時 2020-04-25 17:09:12
言語 Nim
(2.0.2)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 5,372 ms
コンパイル使用メモリ 66,076 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-09-16 13:48:58
合計ジャッジ時間 21,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 597 ms
35,712 KB
testcase_01 AC 502 ms
27,392 KB
testcase_02 AC 352 ms
35,572 KB
testcase_03 AC 100 ms
9,652 KB
testcase_04 AC 179 ms
15,488 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 175 ms
14,080 KB
testcase_08 AC 145 ms
13,864 KB
testcase_09 AC 497 ms
27,520 KB
testcase_10 AC 463 ms
23,552 KB
testcase_11 AC 506 ms
27,520 KB
testcase_12 AC 470 ms
23,552 KB
testcase_13 AC 587 ms
35,840 KB
testcase_14 AC 593 ms
35,688 KB
testcase_15 AC 557 ms
35,584 KB
testcase_16 AC 569 ms
35,840 KB
testcase_17 AC 575 ms
35,712 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 547 ms
35,712 KB
testcase_23 AC 409 ms
31,604 KB
testcase_24 AC 571 ms
35,584 KB
testcase_25 AC 522 ms
31,616 KB
testcase_26 AC 536 ms
31,612 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 451 ms
35,712 KB
testcase_39 AC 579 ms
35,640 KB
testcase_40 AC 407 ms
31,688 KB
testcase_41 AC 688 ms
35,584 KB
testcase_42 AC 678 ms
35,584 KB
testcase_43 AC 676 ms
35,712 KB
testcase_44 AC 708 ms
35,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, math

type SegmentTree[T] = object
  n: int
  dat: seq[T]
  e: T
  multiply: proc(a, b: T): T

proc initSegmentTree[T](n: int, e: T, f: proc(a, b: T): T): SegmentTree[T] =
  let nn = nextPowerOfTwo(n)
  var dat = newSeqWith(nn * 2 - 1, e)
  return SegmentTree[T](n: nn, dat: dat, e: e, multiply: f)

proc get[T](this: SegmentTree[T], i: int): T =
  return this.dat[i + this.n - 1]

proc update[T](this: var SegmentTree[T], i: int, x: T) =
  var k = i + this.n - 1
  this.dat[k] = x
  while k > 0:
    k = (k - 1) div 2
    this.dat[k] = this.multiply(this.dat[k * 2 + 1], this.dat[k * 2 + 2])

proc query[T](this: SegmentTree[T], ql, qr, i, il, ir: int): T =
  if ql <= il and ir <= qr:
    return this.dat[i]
  if qr <= il or ir <= ql:
    return this.e
  let m = (il + ir) div 2
  return this.multiply(
    query(this, ql, qr, i * 2 + 1, il, m),
    query(this, ql, qr, i * 2 + 2, m, ir))

proc query[T](this: SegmentTree[T], ql, qr: int): T =
  return query(this, ql, qr, 0, 0, this.n)

let read = iterator: string {.closure.} =
  for s in stdin.readAll.split:
    yield s

proc main() =
  let
    n = read().parseInt
    a = newSeqWith(n, read().parseBiggestInt)

  var seg = initSegmentTree[int64](
    n,
    0,
    proc(x, y: int64): int64 = gcd(x, y))
  for i in 0..<n:
    seg.update(i, a[i])
  var
    ans: int64 = 0
    le = 0
  for ri in 1..n:
    while le < ri and seg.query(le, ri) == 1:
      ans += n - ri + 1
      le += 1
  echo ans
main()
0