結果
問題 | No.1043 直列大学 |
ユーザー | 山下 |
提出日時 | 2020-05-02 01:30:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,747 bytes |
コンパイル時間 | 1,737 ms |
コンパイル使用メモリ | 169,420 KB |
実行使用メモリ | 150,144 KB |
最終ジャッジ日時 | 2024-06-07 15:16:31 |
合計ジャッジ時間 | 6,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 4 ms
11,728 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
7,628 KB |
testcase_08 | AC | 3 ms
9,676 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | AC | 46 ms
72,780 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 31 ms
43,592 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 28 ms
41,676 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 19 ms
30,160 KB |
testcase_28 | WA | - |
testcase_29 | AC | 5 ms
6,272 KB |
testcase_30 | AC | 36 ms
54,528 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; ll mod = 1000000007; ll r(ll x, ll y) { if (y == 0) return 1; else if (y % 2 == 0) return r(x, y/2) * r(x, y/2) % mod; else return x * r(x, (y-1)/2) % mod * r(x, (y-1)/2) % mod; } ll n, m, sumR, sumV; ll R[100], V[100]; ll dpr[101][100005] = {}; ll dpv[101][100005] = {}; void dpR() { for (int i = 0; i < m; i++) { for (int j = 0; j <= sumR; j++) { if (i == 0) { if (j == 0) dpr[i][j] = 1; else if (j == R[i]) dpr[i][j] = 1; else dpr[i][j] = 0; } else if (j < R[i]) dpr[i][j] = dpr[i-1][j]; else dpr[i][j] = dpr[i-1][j] + dpr[i-1][j-R[i]]; } } } void dpV() { for (int i = 0; i < n; i++) { for (int j = 0; j <= sumV; j++) { if (i == 0) { if (j == 0) dpv[i][j] = 1; else if (j == V[i]) dpv[i][j] = 1; else dpv[i][j] = 0; } else if (j < V[i]) dpv[i][j] = dpv[i-1][j]; else dpv[i][j] = dpv[i-1][j] + dpv[i-1][j-V[i]]; } } } int main() { cin >> n >> m; for (int i = 0; i < n; i++) { cin >> V[i]; sumV += V[i]; } for (int i = 0; i < m; i++) { cin >> R[i]; sumR += R[i]; } dpR(); dpV(); vector<ll> sv(sumV+1); sv[0] = 0; vector<ll> sr(sumR+1); sr[0] = 0; for (int i = 1; i < sumV + 1; i++) sv[i] = sv[i-1] + dpv[n-1][i]; for (int i = 1; i < sumR + 1; i++) sr[i] = sr[i-1] + dpr[m-1][i]; int a, b; cin >> a >> b; ll count = 0; for (int i = 1; i < sumR + 1; i++) { if (dpr[m-1][i] > 0) { ll A = a * i; ll B = b * i; A--; if (A < sumV) { count += (dpr[m-1][i] * (sv[min(sumV, B)] - sv[A])); count %= mod; } } } cout << count <<endl; }