이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#define debug printf
#define ff first
#define ss second
#define sz(x) (int)(x.size())
#define all(x) x.begin(),x.end()
#define ll long long
using namespace std ;
long long count_tastiness(long long x, vector<long long> a )
{
while( (int)(a.size()) < 60 ) { a.push_back(0LL) ; } ;
vector<ll> pos(1,0LL) ;
ll curSoma = 0LL ;
vector<pair<ll,int>> vec ;
for(int i = 0 ; i < 60 && (LLONG_MAX/x) > (1LL<<i); i++ )
{
curSoma += a[i] * (1LL<<i) ;
vec.push_back( make_pair( curSoma - x*(1LL<<i) , i ) ) ;
}
sort(all(vec)) ;
vector<int> meuIdx(60, -1) ; //eu vou atualizar quando encontrar
//alguem que eh maior que ele
int ptr = 0 ;
while( ptr < sz(vec) && vec[ptr].first < 0LL )
{
meuIdx[ vec[ptr].second ] = 0 ;
ptr++ ;
}
for(int i = 0 ; i < (int)(vec.size()) ; i++ )
{
int getIdx = meuIdx[i] ;
if(getIdx == -1) getIdx = sz(pos) ;
for(int j = 0 ; j < getIdx ; j++ )
{
pos.push_back( pos[j] + x*(1LL<<i) ) ;
while(ptr < sz(vec) && pos.back() > vec[ptr].first )
{
if( vec[ptr].second > i )
meuIdx[ vec[ptr].second ] = sz(pos)-1 ;
ptr++ ;
}
}
}
return (int)(pos.size() ) ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |