제출 #492035

#제출 시각아이디문제언어결과실행 시간메모리
492035ValiAntonieFancy Fence (CEOI20_fancyfence)C++14
45 / 100
1089 ms5088 KiB
#include <bits/stdc++.h>
#define mod 1000000007

using namespace std;

stack <pair<unsigned long long,unsigned long long>> S;
unsigned long long n,v[100005],i,dr[100005],st[100005],x,j,val,Max,nr,nr2;
unsigned long long suma[100001],total,val1, val2;
pair <int,int > sor[100005];


unsigned long long bin(unsigned long long  x){
	x %= mod;
    return ((x*(x+1))/2)%mod;
}
unsigned long long rectCount(unsigned long long x, unsigned long long y){
    return (bin(x)*bin(y))%mod;
}


int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(i=1;i<=n;i++){
    cin>>v[i];
    if(v[i] == v[i-1])
        nr++;
    if(v[i] >= v[i-1])
        nr2++;
    sor[i].first = v[i];
    sor[i].second = i;
    dr[i] = n + 1;
}
sort(sor+1,sor+n+1);
for(i=1;i<=n;i++){
    cin>>x;
    suma[i] = suma[i-1] + x;
}
for(i=1;i<=n;i++){
    x = v[i];
    while(S.empty() == false && x<S.top().first){
        dr[S.top().second] = i;
        S.pop();
    }
    S.push({x,i});
}
while(S.empty() == false){
    S.pop();
}
for(i=n;i>=1;i--){
    x = v[i];
    while(S.empty() == false && x < S.top().first){
        st[S.top().second] = i;
        S.pop();
    }
    S.push({x,i});
}
if(nr != n - 1){
//brut
for(i=1;i<=n;i++){
    total += rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],sor[i].first) % mod;
    for(j=1;j<=i-1;j++){
        if(st[sor[j].second] <= sor[i].second && dr[sor[j].second] >= sor[i].second)
            Max = sor[j].first;
    }
    total -= rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],Max) % mod;
}
}
else{
    //subtask 4
    total = rectCount(suma[n],v[1]);
}
cout << total % mod;
    return 0;
}

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

fancyfence.cpp: In function 'int main()':
fancyfence.cpp:65:30: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'int' [-Wsign-compare]
   65 |         if(st[sor[j].second] <= sor[i].second && dr[sor[j].second] >= sor[i].second)
      |            ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
fancyfence.cpp:65:68: warning: comparison of integer expressions of different signedness: 'long long unsigned int' and 'int' [-Wsign-compare]
   65 |         if(st[sor[j].second] <= sor[i].second && dr[sor[j].second] >= sor[i].second)
      |                                                  ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...