結果
| 問題 |
No.1043 直列大学
|
| コンテスト | |
| ユーザー |
Ricky_pon
|
| 提出日時 | 2019-11-13 16:46:43 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,632 bytes |
| コンパイル時間 | 2,387 ms |
| コンパイル使用メモリ | 193,668 KB |
| 最終ジャッジ日時 | 2025-01-08 03:57:14 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 WA * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:24:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
24 | scanf("%d%d", &n, &m);
| ~~~~~^~~~~~~~~~~~~~~~
main.cpp:26:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
26 | rep(i, n) scanf("%d", &v[i]);
| ~~~~~^~~~~~~~~~~~~
main.cpp:27:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
27 | rep(i, m) scanf("%d", &r[i]);
| ~~~~~^~~~~~~~~~~~~
main.cpp:29:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
29 | scanf("%lld%lld", &a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
#define For(i, a, b) for(int (i)=(a); (i)<(b); ++(i))
#define rFor(i, a, b) for(int (i)=(a)-1; (i)>=(b); --(i))
#define rep(i, n) For((i), 0, (n))
#define rrep(i, n) rFor((i), (n), 0)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
typedef pair<int, int> pii;
typedef pair<lint, lint> pll;
typedef complex<double> xy_t;
typedef vector<lint> poly;
const lint mod = 1e9 + 7;
const lint INF = mod * mod;
const int MAX = 100010;
lint dpv[2][MAX], dpr[2][MAX], vsum[MAX];
int main(){
int n, m;
scanf("%d%d", &n, &m);
int v[n], r[m];
rep(i, n) scanf("%d", &v[i]);
rep(i, m) scanf("%d", &r[i]);
lint a, b;
scanf("%lld%lld", &a, &b);
rep(i, 2)rep(j, MAX) dpv[i][j] = 0;
rep(i, 2)rep(j, MAX) dpr[i][j] = 0;
dpv[0][0] = dpr[0][0] = 1;
rep(i, n){
rep(j, MAX)if(dpv[i&1][j]){
(dpv[(i+1)&1][j] += dpv[i&1][j]) %= mod;
if(j+v[i] < MAX) (dpv[(i+1)&1][j+v[i]] += dpv[i&1][j]) %= mod;
}
rep(j, MAX) dpv[i&1][j] = 0;
}
rep(i, m){
rep(j, MAX)if(dpr[i&1][j]){
(dpr[(i+1)&1][j] += dpr[i&1][j]) %= mod;
if(j+r[i] < MAX) (dpr[(i+1)&1][j+r[i]] += dpr[i&1][j]) %= mod;
}
rep(j, MAX) dpr[i&1][j] = 0;
}
vsum[1] = 0;
rep(i, MAX-2) vsum[i+2] = (vsum[i+1] + dpv[n&1][i+1]) % mod;
lint ans = 0;
For(i, 1, MAX)if(dpr[m&1][i]){
lint L = a*i, R = b*i + 1;
(ans += (vsum[min((lint)MAX, R)]+mod-vsum[min((lint)MAX, L)])%mod * dpr[m&1][i] % mod) %= mod;
}
printf("%lld\n", ans);
}
Ricky_pon