結果

問題 No.2359 A in S ?
ユーザー mkawa2mkawa2
提出日時 2023-06-23 22:25:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,626 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 116,280 KB
最終ジャッジ日時 2024-07-01 02:09:17
合計ジャッジ時間 15,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,040 KB
testcase_01 AC 48 ms
55,216 KB
testcase_02 AC 71 ms
68,592 KB
testcase_03 AC 44 ms
55,284 KB
testcase_04 AC 415 ms
113,608 KB
testcase_05 AC 1,314 ms
108,896 KB
testcase_06 AC 710 ms
116,280 KB
testcase_07 AC 277 ms
108,660 KB
testcase_08 TLE -
testcase_09 AC 222 ms
108,516 KB
testcase_10 AC 1,598 ms
110,512 KB
testcase_11 AC 1,597 ms
109,844 KB
testcase_12 AC 410 ms
112,940 KB
testcase_13 AC 407 ms
115,004 KB
testcase_14 AC 684 ms
115,400 KB
testcase_15 AC 222 ms
108,672 KB
testcase_16 AC 875 ms
116,104 KB
testcase_17 AC 775 ms
112,736 KB
testcase_18 AC 756 ms
113,060 KB
testcase_19 AC 799 ms
113,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
md = 10**9+7
# md = 998244353

from heapq import *
from collections import defaultdict, Counter

mx = 100000
sq = 316

n, m = LI()
lrxy = LLI(n)
aa = LI()

ja = sorted(enumerate(aa), key=lambda x: x[1])
lrxy.sort(key=lambda x: -x[0])

ans = [0]*m
xtoy = defaultdict(Counter)
cnt = [0]*(mx+1)
hp = []
for j, a in ja:
    while lrxy and lrxy[-1][0] <= a:
        l, r, x, y = lrxy.pop()
        if x < sq:
            xtoy[x][y] += 1
        else:
            for i in range(y, mx+1, x): cnt[i] += 1
        heappush(hp, (r, x, y))
    while hp and hp[0][0] < a:
        r, x, y = heappop(hp)
        if x < sq:
            xtoy[x][y] -= 1
            if xtoy[x][y] == 0: del xtoy[x][y]
            if not xtoy[x]:del xtoy[x]
        else:
            for i in range(y, mx+1, x): cnt[i] -= 1

    ans[j] = cnt[a]
    for x in xtoy:
        b = a%x
        if b in xtoy[x]: ans[j] += xtoy[x][b]

print(*ans,sep="\n")
0