Submission #805405

#TimeUsernameProblemLanguageResultExecution timeMemory
805405WLZPacking Biscuits (IOI20_biscuits)C++17
12 / 100
1079 ms120004 KiB
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;

#ifdef DEBUG
#include "../../templates/debug.h"
#else
#define debug(...) 0
#endif

const int X = 130;

long long count_tastiness(long long x, std::vector<long long> a) {
  for (int i = 0; i < (int) a.size(); i++) {
    if (a[i] > x) {
      if (i == (int) a.size() - 1) a.push_back(0);
      a[i + 1] += (a[i] - x) / 2;
      a[i] -= (a[i] - x) / 2 * 2;
    }
  }
  while ((int) a.size() < X) a.push_back(0);
  //int k = (int) a.size();
  long long ans = 0;
  vector< vector<long long> > dp(X, vector<long long>(2 * x + 5));
  dp[0][0] = 1;
  for (int i = 0; i < X; i++) {
    for (int j = 0; j < 2 * x + 5; j++) {
      ans += dp[i][j];
      long long extra = j;
      for (int t = i + 1; t < X; t++) {
        extra = (extra / 2) - (extra < 0);
        extra += a[t - 1];
        if (extra >= x) dp[t][extra - x] += dp[i][j];
      }
    }
  }
  debug(dp);
	return ans;
}

Compilation message (stderr)

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:8:20: warning: statement has no effect [-Wunused-value]
    8 | #define debug(...) 0
      |                    ^
biscuits.cpp:37:3: note: in expansion of macro 'debug'
   37 |   debug(dp);
      |   ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...