답안 #492046

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
492046 2021-12-05T10:48:23 Z ValiAntonie Fancy Fence (CEOI20_fancyfence) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#define mod 1000000007

using namespace std;

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


long long bin(long long  x){
	x %= mod;
    return ((x*(x+1))/2)%mod;
}
long long rectCount(long long x, 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 && nr2 != n - 1){
//brut
for(i=1;i<=n;i++){
    total1 += rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],sor[i].first) % mod;
    total1 = total1 % 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;
    }
    total2 += rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],Max) % mod;
    total2 = total2 % mod;
}
}
else if(nr2 == n - 1){
    //subtask 5
for(i=1;i<=n;i++){
    total1 += rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],sor[i].first) % mod;
    total1 = total1 % modl
    total2 += rectCount(suma[dr[sor[i].second]-1] - suma[st[sor[i].second]],sor[i-1].first) % mod;
    total2 = total2 % mod;
}
else{
    //subtask 4
    total1 = rectCount(suma[n],v[1]);
}
if(total1 < total2)
    total1 += mod;
cout << total1 - total2 << endl;
    return 0;
}

Compilation message

fancyfence.cpp: In function 'int main()':
fancyfence.cpp:77:23: error: 'modl' was not declared in this scope; did you mean 'modfl'?
   77 |     total1 = total1 % modl
      |                       ^~~~
      |                       modfl
fancyfence.cpp:81:1: error: expected '}' before 'else'
   81 | else{
      | ^~~~
fancyfence.cpp:73:22: note: to match this '{'
   73 | else if(nr2 == n - 1){
      |                      ^