Submission #1052389

#TimeUsernameProblemLanguageResultExecution timeMemory
1052389mychecksedadPacking Biscuits (IOI20_biscuits)C++17
0 / 100
1 ms600 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) {
	for(int i = 0; i + 1 < a.size(); ++i){
		if(a[i] > x) a[i + 1] += (a[i]-x)/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;
	}

	return ans;
}

Compilation message (stderr)

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:13:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   13 |  for(int i = 0; i + 1 < a.size(); ++i){
      |                 ~~~~~~^~~~~~~~~~
biscuits.cpp:22:43: warning: narrowing conversion of 'a.std::vector<long long int>::operator[](((std::vector<long long int>::size_type)i))' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
   22 |    if(i == 0 || a[i - 1] == 0) v.pb({a[i]});
      |                                           ^
biscuits.cpp:22:43: warning: narrowing conversion of 'a.std::vector<long long int>::operator[](((std::vector<long long int>::size_type)i))' from '__gnu_cxx::__alloc_traits<std::allocator<long long int>, long long int>::value_type' {aka 'long long int'} to 'int' [-Wnarrowing]
#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...