結果
問題 | No.1043 直列大学 |
ユーザー | shop_one |
提出日時 | 2020-05-01 22:18:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,244 bytes |
コンパイル時間 | 1,022 ms |
コンパイル使用メモリ | 97,228 KB |
実行使用メモリ | 205,952 KB |
最終ジャッジ日時 | 2024-06-07 10:07:45 |
合計ジャッジ時間 | 11,359 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 280 ms
205,952 KB |
testcase_01 | AC | 264 ms
200,320 KB |
testcase_02 | AC | 426 ms
200,440 KB |
testcase_03 | AC | 264 ms
200,448 KB |
testcase_04 | AC | 260 ms
200,320 KB |
testcase_05 | AC | 246 ms
200,448 KB |
testcase_06 | AC | 249 ms
200,448 KB |
testcase_07 | AC | 357 ms
200,448 KB |
testcase_08 | AC | 330 ms
200,320 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
// I SELL YOU...! #include<iostream> #include<vector> #include<algorithm> #include<functional> #include<queue> #include<chrono> #include<iomanip> #include<map> #include<set> using namespace std; using ll = long long; using P = pair<ll,ll>; using TP = tuple<ll,ll,ll>; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(18); } #define MOD 1000000007 #define MAX 5050000 ll vsum[MAX][2]={},rsum[MAX][2]={}; void solve_dp(ll dp[MAX][2],vector<ll> &v,ll n){ dp[0][0] = 1; for(int i=0;i<n;i++){ for(int j=0;j<MAX;j++){ dp[j][1] = dp[j][0]; if(j>=v[i]){ dp[j][1] += dp[j-v[i]][0]; dp[j][1] %= MOD; } } for(int j=0;j<MAX;j++){ dp[j][0] = dp[j][1]; } } } signed main(){ init_io(); ll n,m,a,b,ans=0; cin >> n >> m; vector<ll> v(n),r(m); vector<ll> sum(MAX+1,0); for(int i=0;i<n;i++){ cin >> v[i]; } for(int i=0;i<m;i++){ cin >> r[i]; } solve_dp(vsum,v,n); solve_dp(rsum,r,m); for(int i=0;i<MAX;i++){ sum[i+1] = (sum[i] + vsum[i][0])%MOD; } cin >> a >> b; for(int i=1;i<MAX;i++){ ll l = a*i,r=i*b; if(r>=MAX) break; ans = (ans+(sum[r+1]-sum[l])*rsum[i][0]+MOD)%MOD; } cout << ans << endl; }