제출 #320834

#제출 시각아이디문제언어결과실행 시간메모리
320834ishi_10Labels (NOI20_labels)C++14
0 / 100
50 ms7780 KiB
#include<iostream>
#include<cmath>
#include<bits/stdc++.h>
#include<string.h>
using namespace std;
typedef long long int ll;
const ll maxn=1e5+2;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    ll n;
    cin>>n;
    ll a[n-1],i;
    for(i=0;i<n-1;i++)
        cin>>a[i];
    ll s=0,f=0,pos,maxx=0;
    for(i=0;i<n-1;i++)
    {
        s=s+a[i];
        if(s>maxx)
        {
            maxx=s;
            pos=i;
        }
    }
    ll ans[n+1];
    ll c=0;
    ans[pos+1]=n;
    ll j,minn=3*(1e5);
    ll posj;
    for(j=pos;j>=0;j--)
    {
        ans[j]=ans[j+1]-a[j];
        if(ans[j]<minn)
        {
            minn=ans[j];
            posj=j;
        }
        if(ans[j]>n || ans[j]<1)
        {
            c=1;
            break;
        }
    }
    for(j=pos+2;j<n;j++)
    {
        ans[j]=ans[j-1]+a[j-1];
        if(ans[j]<minn)
        {
            minn=ans[j];
            posj=j;
        }
        if(ans[j]>n || ans[j]<1)
        {
            c=1;
            break;
        }
    }
    if(c==0)
    {
        if(ans[posj]==1){
            for(i=0;i<n;i++)
                cout<<ans[i]<<" ";
            cout<<"\n";
        }
        else
            cout<<"-1\n";
    }
    else
        cout<<"-1\n";
    cerr<<"\nTime elapsed:"<< 1000 * clock() / CLOCKS_PER_SEC << "ms\n";
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

Labels.cpp: In function 'int main()':
Labels.cpp:17:12: warning: unused variable 'f' [-Wunused-variable]
   17 |     ll s=0,f=0,pos,maxx=0;
      |            ^
Labels.cpp:62:20: warning: 'posj' may be used uninitialized in this function [-Wmaybe-uninitialized]
   62 |         if(ans[posj]==1){
      |            ~~~~~~~~^
Labels.cpp:46:10: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
   46 |     for(j=pos+2;j<n;j++)
      |         ~^~~~~~
#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...