Submission #1052444

#TimeUsernameProblemLanguageResultExecution timeMemory
1052444mychecksedad비스킷 담기 (IOI20_biscuits)C++17
0 / 100
898 ms2097156 KiB
#include "biscuits.h"
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long int
#define all(x) x.begin(),x.end()
#define vi vector<int>
#define pii pair<int,int>
#define ff first
#define ss second

long long count_tastiness(long long x, std::vector<long long> a) {
	a.resize(63);
	vector<vector<ll>> dp(63, vector<ll>(x));
	for(int i = 0; i + 1 < a.size(); ++i){
		if(a[i] > x){
			ll dif = (a[i] - x) / 2;
			a[i + 1] += dif;
			a[i] -= dif * 2;
		}
	}

	ll k = a.size();

	// vector<vector<int>> v;
	// for(int i = 0; i < k; ++i){
	// 	if(a[i] >= 1){
	// 		if(i == 0 || a[i - 1] == 0) v.pb({a[i]});
	// 		else v.back().pb(a[i]);
	// 	}
	// }
	// ll ans = 1;
	// for(auto u: v){
	// 	ll x = 1;
	// 	for(int i = u.size() - 1; i >= 0; --i){
	// 		x *= 2;
	// 		if(u[i] == 2) x += 1;
	// 	}
	// 	ans *= x;
	// }
	dp[0][0] = 1;
	for(int i = 0; i < k - 1; ++i){
		for(int j = 0; j < x; ++j){
			dp[i + 1][(j + a[i]) >> 1] += dp[i][j];
			if(j + a[i] >= x)
				dp[i + 1][(j + a[i] - x) >> 1] += dp[i][j];
		}
	}
	ll ans = 0;
	for(int j = 0; j < x; ++j) ans += dp[k - 1][j];

	return ans;
}

Compilation message (stderr)

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:15:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |  for(int i = 0; i + 1 < a.size(); ++i){
      |                 ~~~~~~^~~~~~~~~~
#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...