結果

問題 No.1043 直列大学
ユーザー yutasyutas
提出日時 2020-05-01 22:31:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,019 bytes
コンパイル時間 991 ms
コンパイル使用メモリ 95,064 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-06-07 10:49:18
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 68 ms
36,096 KB
testcase_15 AC 75 ms
43,136 KB
testcase_16 AC 67 ms
35,968 KB
testcase_17 AC 49 ms
22,272 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 45 ms
20,736 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 34 ms
15,872 KB
testcase_28 WA -
testcase_29 AC 19 ms
6,528 KB
testcase_30 AC 50 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <map>
#include <iomanip>
#include <stdlib.h>
#include <stdio.h>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <time.h>
 
using namespace std;
 
typedef long long ll;
typedef long double ld;
typedef pair<int, int> Pii;
typedef pair<int, ll> Pil;
typedef pair<ll, ll> Pll;
typedef pair<ll, int> Pli;

#define fi first
#define se second
#define mp make_pair
 
const ll MOD = 1e9 + 7;
const ll MOD2 = 998244353;
const ll INF = 1ll << 60;
const double PI = 2 * asin(1);

void yes() {printf("yes\n");}
void no() {printf("no\n");}
void Yes() {printf("Yes\n");}
void No() {printf("No\n");}
void YES() {printf("YES\n");}
void NO() {printf("NO\n");}

int N, M, V[105], R[105], A, B;
ll DPV[105][100005], DPR[105][100005];
ll SumV[int(1e5 + 5)], SumR[int(1e5 + 5)];

int main(){
  scanf("%d%d", &N, &M);
  for (int i = 1; i <= N; i++) scanf("%d", V + i);
  for (int i = 1; i <= M; i++) scanf("%d", R + i);
  scanf("%d%d", &A, &B);

  DPV[0][0] = 1;
  for (int i = 1; i <= N; i++){
    for (int j = 0; j <= 1e5; j++){
      if (DPV[i - 1][j] == 0) continue;
      DPV[i][j] += DPV[i - 1][j];
      if (j + V[i] <= 1e5) DPV[i][j + V[i]] += DPV[i - 1][j];
    }
  }

  DPR[0][0] = 1;
  for (int i = 1; i <= M; i++){
    for (int j = 0; j <= 1e5; j++){
      if (DPR[i - 1][j] == 0) continue;
      DPR[i][j] += DPR[i - 1][j];
      if (j + R[i] <= 1e5) DPR[i][j + R[i]] += DPR[i - 1][j];
    }
  }
  
  for (int i = 1; i <= 1e5; i++){
    SumV[i] = SumV[i - 1] + DPV[N][i];
    SumR[i] = SumR[i - 1] + DPR[M][i];
  }
  
  ll ans = 0;
  for (ll i = 1; i <= 1e5; i++){
    if (SumR[i] == SumR[i - 1]) continue;
    ll now = SumR[i] - SumR[i - 1];

    ll nowA = A * i, nowB = B * i;
    if (nowA > 1e5) break;

    nowA--;
    if (nowB > 1e5) nowB = 1e5;
    ans += now * (SumV[nowB] - SumV[nowA]);
    ans %= MOD;
  }
  cout << ans << endl;

  return 0;
}
0