結果

問題 No.1043 直列大学
ユーザー tpynerivertpyneriver
提出日時 2020-05-02 19:05:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 2,928 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 164,556 KB
最終ジャッジ日時 2024-06-02 03:15:10
合計ジャッジ時間 8,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,704 KB
testcase_01 AC 52 ms
69,728 KB
testcase_02 AC 52 ms
71,316 KB
testcase_03 AC 50 ms
70,648 KB
testcase_04 AC 49 ms
70,056 KB
testcase_05 AC 52 ms
70,640 KB
testcase_06 AC 50 ms
70,968 KB
testcase_07 AC 52 ms
71,492 KB
testcase_08 AC 51 ms
71,392 KB
testcase_09 AC 86 ms
85,344 KB
testcase_10 AC 98 ms
85,320 KB
testcase_11 AC 133 ms
90,096 KB
testcase_12 AC 599 ms
164,556 KB
testcase_13 AC 375 ms
126,288 KB
testcase_14 AC 409 ms
125,372 KB
testcase_15 AC 474 ms
143,328 KB
testcase_16 AC 389 ms
124,340 KB
testcase_17 AC 173 ms
102,364 KB
testcase_18 AC 220 ms
100,500 KB
testcase_19 AC 365 ms
126,132 KB
testcase_20 AC 173 ms
98,540 KB
testcase_21 AC 340 ms
122,276 KB
testcase_22 AC 343 ms
118,488 KB
testcase_23 AC 524 ms
146,320 KB
testcase_24 AC 249 ms
106,244 KB
testcase_25 AC 332 ms
121,556 KB
testcase_26 AC 410 ms
122,948 KB
testcase_27 AC 154 ms
101,308 KB
testcase_28 AC 202 ms
118,036 KB
testcase_29 AC 68 ms
79,440 KB
testcase_30 AC 337 ms
122,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
from operator import add
readline = sys.stdin.readline
MOD = 10**9+7

class Segtree:
    def __init__(self, A, intv, initialize = True, segf = max):
        self.N = len(A)
        self.N0 = 2**(self.N-1).bit_length()
        self.intv = intv
        self.segf = segf
        if initialize:
            self.data = [intv]*self.N0 + A + [intv]*(self.N0 - self.N)
            for i in range(self.N0-1, 0, -1):
                self.data[i] = self.segf(self.data[2*i], self.data[2*i+1]) 
        else:
            self.data = [intv]*(2*self.N0)
        
    def update(self, k, x):
        k += self.N0
        self.data[k] = x
        while k > 0 :
            k = k >> 1
            self.data[k] = self.segf(self.data[2*k], self.data[2*k+1])
    
    def query(self, l, r):
        L, R = l+self.N0, r+self.N0
        s = self.intv
        while L < R:
            if R & 1:
                R -= 1
                s = self.segf(s, self.data[R])
            if L & 1:
                s = self.segf(s, self.data[L])
                L += 1
            L >>= 1
            R >>= 1
        return s
    
    def binsearch(self, l, r, check, reverse = False):
        L, R = l+self.N0, r+self.N0
        SL, SR = [], []
        while L < R:
            if R & 1:
                R -= 1
                SR.append(R)
            if L & 1:
                SL.append(L)
                L += 1
            L >>= 1
            R >>= 1
        
        if reverse:
            for idx in (SR + SL[::-1]):
                if check(self.data[idx]):
                    break
            else:
                return -1
            while idx < self.N0:
                if check(self.data[2*idx+1]):
                    idx = 2*idx + 1
                else:
                    idx = 2*idx
            return idx - self.N0
        else:
            for idx in (SL + SR[::-1]):
                if check(self.data[idx]):
                    break
            else:
                return -1
            while idx < self.N0:
                if check(self.data[2*idx]):
                    idx = 2*idx
                else:
                    idx = 2*idx + 1
            return idx - self.N0

N, M = map(int, readline().split())
V = list(map(int, readline().split()))
R = list(map(int, readline().split()))
A, B = map(int, readline().split())
limit = 10**5+2

tablev = Counter()
tabler = Counter()
tablev[0] = 1
tabler[0] = 1
for v in V:
    for k, val in tablev.copy().items():
        tablev[v+k] += val
for r in R:
    for k, val in tabler.copy().items():
        tabler[r+k] += val
tablev[0] = 0
tabler[0] = 0
TV = [0]*limit
for i in range(limit):
    TV[i] = tablev[i]

ans = 0
T = Segtree(TV, 0, initialize = True, segf = add)
for k, v in tabler.items():
    left, right = k*A, k*B
    left = min(left, limit)
    right = min(right, limit) + 1
    ans = (ans + v*T.query(left, right))%MOD
print(ans)

0