結果

問題 No.2359 A in S ?
ユーザー ntudantuda
提出日時 2023-06-27 22:07:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 757 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 129,480 KB
最終ジャッジ日時 2024-07-04 14:38:22
合計ジャッジ時間 7,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 76 ms
66,560 KB
testcase_03 RE -
testcase_04 AC 242 ms
102,144 KB
testcase_05 AC 291 ms
125,124 KB
testcase_06 AC 247 ms
102,016 KB
testcase_07 AC 231 ms
103,236 KB
testcase_08 AC 615 ms
129,480 KB
testcase_09 AC 225 ms
106,496 KB
testcase_10 AC 282 ms
127,160 KB
testcase_11 AC 297 ms
127,124 KB
testcase_12 AC 248 ms
102,016 KB
testcase_13 RE -
testcase_14 AC 232 ms
102,016 KB
testcase_15 AC 218 ms
106,240 KB
testcase_16 AC 239 ms
102,144 KB
testcase_17 AC 223 ms
106,240 KB
testcase_18 AC 217 ms
106,368 KB
testcase_19 AC 225 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[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