結果

問題 No.1043 直列大学
ユーザー tcltktcltk
提出日時 2021-01-17 23:37:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,612 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2024-05-07 13:00:52
合計ジャッジ時間 23,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,776 KB
testcase_01 AC 31 ms
11,904 KB
testcase_02 AC 31 ms
11,776 KB
testcase_03 AC 32 ms
11,776 KB
testcase_04 AC 32 ms
12,032 KB
testcase_05 AC 31 ms
11,904 KB
testcase_06 AC 33 ms
11,904 KB
testcase_07 AC 32 ms
11,904 KB
testcase_08 AC 32 ms
11,904 KB
testcase_09 AC 71 ms
12,416 KB
testcase_10 AC 140 ms
12,800 KB
testcase_11 AC 628 ms
14,556 KB
testcase_12 TLE -
testcase_13 AC 1,221 ms
18,912 KB
testcase_14 AC 1,326 ms
19,264 KB
testcase_15 AC 1,582 ms
20,060 KB
testcase_16 AC 1,277 ms
18,724 KB
testcase_17 AC 692 ms
16,708 KB
testcase_18 AC 605 ms
16,724 KB
testcase_19 AC 1,178 ms
18,896 KB
testcase_20 AC 626 ms
16,276 KB
testcase_21 AC 1,081 ms
18,768 KB
testcase_22 AC 1,135 ms
18,504 KB
testcase_23 AC 1,699 ms
19,544 KB
testcase_24 AC 791 ms
17,260 KB
testcase_25 AC 1,177 ms
18,752 KB
testcase_26 AC 1,316 ms
18,884 KB
testcase_27 AC 458 ms
15,800 KB
testcase_28 AC 673 ms
17,664 KB
testcase_29 AC 68 ms
12,488 KB
testcase_30 AC 1,076 ms
19,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3 3
# 2 3 4
# 10 23 26
# 1 100
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    N, M = map(int, input().split())
    V = list(map(int, input().split()))
    R = list(map(int, input().split()))
    A, B = map(int, input().split())

    SumV = sum(V)
    dpV = [0 for _ in range(SumV+1)]
    dpV[0] = 1
    dpV[V[0]] = 1
    for i in range(0, N-1):
        dpV1 = [0 for _ in range(SumV+1)]
        for v in range(SumV+1):
            if dpV[v] > 0:
                dpV1[v] += dpV[v]
                dpV1[v+V[i+1]] += dpV[v]
        dpV = dpV1

    SumR = sum(R)
    dpR = [0 for _ in range(SumR+1)]
    dpR[0] = 1
    dpR[R[0]] = 1
    for i in range(0, M-1):
        dpR1 = [0 for _ in range(SumR+1)]
        for r in range(SumR+1):
            if dpR[r] > 0:
                dpR1[r] += dpR[r]
                dpR1[r+R[i+1]] += dpR[r]
        dpR = dpR1

    SV = [0 for _ in range(SumV+1)]
    SV[0] = dpV[0]
    for v in range(1, SumV+1):
        SV[v] = SV[v-1] + dpV[v]

    n = 0
    for r in range(1, SumR+1):
        v1 = max(r*A, 1)
        v2 = min(r*B, SumV)
        if v1 <= v2:
            n += dpR[r] * (SV[v2] - SV[v1-1])

    print(n % MOD)


if __name__ == '__main__':
    main()
0