# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
619660 | chonka | Candies (JOI18_candies) | C++17 | 115 ms | 11956 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll ;
const int MAXN = 2e5 + 7 ;
const ll inf = 1e16 ;
int n ;
ll a[ MAXN ] ;
ll sm[ MAXN ] ;
int st[ MAXN ] , en[ MAXN ] ;
bool done[ MAXN ] ;
priority_queue < pair < ll , int > > q ;
void solve ( ) {
cin >> n ;
for ( int i = 1 ; i <= n ; ++ i ) {
cin >> a[ i ] ;
}
en[ 0 ] = 1 , st[ n + 1 ] = n ;
sm[ 0 ] = sm[ n + 1 ] = -inf ;
for ( int i = 1 ; i <= n ; ++ i ) {
sm[ i ] = a[ i ] ;
st[ i ] = i - 1 ;
en[ i ] = i + 1 ;
q.push ( { sm[ i ] , i } ) ;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |