이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mp make_pair
#define fi first
#define se second
#define all(v) v.begin(),v.end()
#define allarr(a) a , a + n
#define ll long long
#define ull unsigned long long
#define pb push_back
#define fastio ios_base::sync_with_stdio(false) ; cin.tie(NULL); cout.tie(NULL)
typedef pair<int, int> pi;
typedef pair<ll,ll> pll;
typedef pair<int,pi> trp ;
typedef vector<pi> vpi;
typedef vector<pll> vpll ;
// int ab (int x ) { return (x>0?x:-x); }
const int N = 500005 ;
int a[N] , pref[N],n;
int sum(int l , int r ){
if( l > r )return 0;
if( l == 0 )return pref[r];
return pref[r]-pref[l-1] ;
}
int main(){
cin >> n ;
for(int i= 0 ; i< n ; i++ )cin >> a[i] ;
pref[0] = a[0] ;
for(int i = 1 ; i < n ; i++ ){
pref[i] = pref[i-1] + a[i] ;
}
int ans = 1e9;
for(int start = 0 ; start < (n/2)+(n%2) ; start ++ ){
int s = sum(0,start) ;
int res = (n/2+n%2)-start-1;
// cout << start << " " << n-1-res << endl;
s += sum(n-res,n-1);
ans = min(ans,s);
}
cout << ans << endl;
}
# | 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... |