結果

問題 No.2359 A in S ?
ユーザー ntudantuda
提出日時 2023-06-27 22:11:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 129,476 KB
最終ジャッジ日時 2024-07-04 14:41:20
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 66 ms
66,816 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 240 ms
102,016 KB
testcase_05 AC 286 ms
125,508 KB
testcase_06 AC 239 ms
102,368 KB
testcase_07 AC 229 ms
102,984 KB
testcase_08 AC 590 ms
129,476 KB
testcase_09 AC 217 ms
106,624 KB
testcase_10 AC 265 ms
127,156 KB
testcase_11 AC 270 ms
127,384 KB
testcase_12 AC 243 ms
102,016 KB
testcase_13 AC 230 ms
101,888 KB
testcase_14 AC 227 ms
102,016 KB
testcase_15 AC 212 ms
106,496 KB
testcase_16 AC 225 ms
102,144 KB
testcase_17 AC 214 ms
106,240 KB
testcase_18 AC 201 ms
106,240 KB
testcase_19 AC 208 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
LRXY = [list(map(int, input().split())) for _ in range(N)]
A = list(map(int, input().split()))
maxa = max(A)
from collections import defaultdict
dic = defaultdict(list)

for i, (l, r, x, y) in enumerate(LRXY):
    if maxa < r:
        LRXY[i][1] = maxa
        r = maxa
    dic[(x, y)].append((l, r))
    maxa = max(maxa, y)
ans = [0] * (maxa + 1)
for k, v in dic.items():
    x, y = k
    n = maxa // x + 2
    imost = [0] * (n + 1)
    for l, r in v:
        L = - ((y - l) // x)
        R = (r - y) // x
        imost[L] += 1
        imost[R + 1] -= 1
    for i in range(n - 1):
        tmp = imost[i]
        imost[i + 1] += tmp
        if i * x + y <= maxa:
            ans[i * x + y] += tmp
for a in A:
    print(ans[a])
0