結果

問題 No.1043 直列大学
ユーザー tpynerivertpyneriver
提出日時 2020-05-02 19:05:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 2,928 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 164,304 KB
最終ジャッジ日時 2024-12-22 20:04:08
合計ジャッジ時間 9,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
70,084 KB
testcase_01 AC 56 ms
69,932 KB
testcase_02 AC 57 ms
70,228 KB
testcase_03 AC 58 ms
71,232 KB
testcase_04 AC 57 ms
70,400 KB
testcase_05 AC 58 ms
70,436 KB
testcase_06 AC 58 ms
70,244 KB
testcase_07 AC 56 ms
69,952 KB
testcase_08 AC 59 ms
70,228 KB
testcase_09 AC 98 ms
85,156 KB
testcase_10 AC 115 ms
85,208 KB
testcase_11 AC 154 ms
89,972 KB
testcase_12 AC 682 ms
164,304 KB
testcase_13 AC 411 ms
125,844 KB
testcase_14 AC 463 ms
125,304 KB
testcase_15 AC 540 ms
143,196 KB
testcase_16 AC 450 ms
124,380 KB
testcase_17 AC 199 ms
102,232 KB
testcase_18 AC 256 ms
100,500 KB
testcase_19 AC 404 ms
126,008 KB
testcase_20 AC 193 ms
98,204 KB
testcase_21 AC 387 ms
122,268 KB
testcase_22 AC 377 ms
118,360 KB
testcase_23 AC 607 ms
146,316 KB
testcase_24 AC 285 ms
106,120 KB
testcase_25 AC 381 ms
121,340 KB
testcase_26 AC 466 ms
122,924 KB
testcase_27 AC 183 ms
101,312 KB
testcase_28 AC 237 ms
118,116 KB
testcase_29 AC 78 ms
79,272 KB
testcase_30 AC 395 ms
122,808 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