結果
問題 | No.1043 直列大学 |
ユーザー | Manuel1024 |
提出日時 | 2021-04-29 17:50:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,065 bytes |
コンパイル時間 | 784 ms |
コンパイル使用メモリ | 71,904 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-16 03:00:49 |
合計ジャッジ時間 | 2,517 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 25 ms
6,944 KB |
testcase_15 | AC | 28 ms
6,944 KB |
testcase_16 | AC | 24 ms
6,940 KB |
testcase_17 | AC | 18 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 19 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 14 ms
6,944 KB |
testcase_28 | WA | - |
testcase_29 | AC | 10 ms
6,944 KB |
testcase_30 | AC | 17 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; using ll = long long int; constexpr ll MOD = 1'000'000'007; int main(){ int n, m; cin >> n >> m; vector<ll> v(n), r(m); for(auto &p: v) cin >> p; for(auto &p: r) cin >> p; int a, b; cin >> a >> b; const int cntlim = 100010; vector<ll> vcnt(cntlim, 0), rcnt(cntlim, 0); vcnt[0] = rcnt[0] = 1; for(auto &p: v){ for(int i = cntlim-1; i >= 0; i--){ if(vcnt[i] > 0) vcnt[i+p] += vcnt[i]; } } for(auto &p: r){ for(int i = cntlim-1; i >= 0; i--){ if(rcnt[i] > 0) rcnt[i+p] += rcnt[i]; } } for(int i = 1; i < cntlim; i++) rcnt[i] += rcnt[i-1]; //for(int i = 0; i < 20; i++) cerr << vcnt[i] << " "; ll ans = 0; for(int v1 = 1; v1 < cntlim; v1++){ int r1 = v1/a; int r2 = (v1+b-1)/b; if(r1 < r2) continue; //cerr << r1 << " " << r2 << endl; ans += vcnt[v1]*(rcnt[r1]-rcnt[r2-1]); ans %= MOD; } cout << ans << endl; return 0; }