Submission #3780283


Source Code Expand

#include <bits/stdc++.h>
#define REP(i, n) for(int i = 0;i < n;i++)
#define REPR(i, n) for(int i = n;i >= 0;i--)
#define FOR(i, m, n) for(int i = m;i < n;i++)
#define FORR(i, m, n) for(int i = m;i >= n;i--)
#define SORT(v, n) sort(v, v+n);
#define VSORT(v) sort(v.begin(), v.end());
#define VRSORT(v) sort(v.rbegin(), v.rend());//vectorの降順ソート
#define ll long long
#define pb(a) push_back(a)
#define INF 1000000000
using namespace std;
typedef pair<int, int> P;
typedef pair<ll, ll> LP;
typedef pair<int, P> PP;
typedef pair<ll, LP> LPP;

int dy[]={0, 0, 1, -1, 0};
int dx[]={1, -1, 0, 0, 0};

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  ll dp[2000][2001];
  ll a[2000];
  ll sum[2000];
  int n,k;
  cin >> n >> k;
  REP(i,n) REP(j,j+1) dp[i][j] = INT32_MAX;
  cin >> a[0];
  sum[0] = a[0];
  for(int i=0;i<n;i++){
    cin >> a[i];
    sum [i] = sum[i-1] + a[i];
  }
  dp[0][0] = 0;
  dp[0][1] = 1;
  for(int i=1;i<n;i++){
    dp[i][0] = 0;
    for(int j=1;j<=i+1;j++){
      if(dp[i-1][j-1] < sum[i-1]){
        dp[i][j] = min(dp[i-1][j], (dp[i-1][j-1]*a[i])/sum[i-1] + 1);
      }
      else{
        dp[i][j] = dp[i-1][j];
      }
    }
    int ans;
    REP(i,n+1){
      if(dp[n-1][i] <= k) ans = i;
      else break;
    }
    if(k == sum[n-1]) cout << 1 << endl;
    else cout << ans << endl;
  }
}

Submission Info

Submission Time
Task B - 高橋君ゲーム
User Bondo416
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1385 Byte
Status TLE
Exec Time 2103 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
TLE × 4
TLE × 68
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt, s4.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt, 52.txt, 53.txt, 54.txt, 55.txt, 56.txt, 57.txt, 58.txt, 59.txt, 60.txt, 61.txt, 62.txt, 63.txt, 64.txt, s1.txt, s2.txt, s3.txt, s4.txt
Case Name Status Exec Time Memory
01.txt TLE 2103 ms 256 KB
02.txt TLE 2103 ms 256 KB
03.txt TLE 2103 ms 256 KB
04.txt TLE 2103 ms 256 KB
05.txt TLE 2103 ms 256 KB
06.txt TLE 2103 ms 256 KB
07.txt TLE 2103 ms 256 KB
08.txt TLE 2103 ms 256 KB
09.txt TLE 2103 ms 256 KB
10.txt TLE 2103 ms 256 KB
11.txt TLE 2103 ms 256 KB
12.txt TLE 2103 ms 256 KB
13.txt TLE 2103 ms 256 KB
14.txt TLE 2103 ms 256 KB
15.txt TLE 2103 ms 256 KB
16.txt TLE 2103 ms 256 KB
17.txt TLE 2103 ms 256 KB
18.txt TLE 2103 ms 256 KB
19.txt TLE 2103 ms 256 KB
20.txt TLE 2103 ms 256 KB
21.txt TLE 2103 ms 256 KB
22.txt TLE 2103 ms 256 KB
23.txt TLE 2103 ms 256 KB
24.txt TLE 2103 ms 256 KB
25.txt TLE 2103 ms 256 KB
26.txt TLE 2103 ms 256 KB
27.txt TLE 2103 ms 256 KB
28.txt TLE 2103 ms 256 KB
29.txt TLE 2103 ms 256 KB
30.txt TLE 2103 ms 256 KB
31.txt TLE 2103 ms 256 KB
32.txt TLE 2103 ms 256 KB
33.txt TLE 2103 ms 256 KB
34.txt TLE 2103 ms 256 KB
35.txt TLE 2103 ms 256 KB
36.txt TLE 2103 ms 256 KB
37.txt TLE 2103 ms 256 KB
38.txt TLE 2103 ms 256 KB
39.txt TLE 2103 ms 256 KB
40.txt TLE 2103 ms 256 KB
41.txt TLE 2103 ms 256 KB
42.txt TLE 2103 ms 256 KB
43.txt TLE 2103 ms 256 KB
44.txt TLE 2103 ms 256 KB
45.txt TLE 2103 ms 256 KB
46.txt TLE 2103 ms 256 KB
47.txt TLE 2103 ms 256 KB
48.txt TLE 2103 ms 256 KB
49.txt TLE 2103 ms 256 KB
50.txt TLE 2103 ms 256 KB
51.txt TLE 2103 ms 256 KB
52.txt TLE 2103 ms 256 KB
53.txt TLE 2103 ms 256 KB
54.txt TLE 2103 ms 256 KB
55.txt TLE 2103 ms 256 KB
56.txt TLE 2103 ms 256 KB
57.txt TLE 2103 ms 256 KB
58.txt TLE 2103 ms 256 KB
59.txt TLE 2103 ms 256 KB
60.txt TLE 2103 ms 256 KB
61.txt TLE 2103 ms 256 KB
62.txt TLE 2103 ms 256 KB
63.txt TLE 2103 ms 256 KB
64.txt TLE 2103 ms 256 KB
s1.txt TLE 2103 ms 256 KB
s2.txt TLE 2103 ms 256 KB
s3.txt TLE 2103 ms 256 KB
s4.txt TLE 2103 ms 256 KB