Submission #901486

# Submission time Handle Problem Language Result Execution time Memory
901486 2024-01-09T13:02:36 Z karamkallasi Fancy Fence (CEOI20_fancyfence) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#define T ll tt ; cin>>tt ; while(tt--)
#define fast ios::sync_with_stdio(NULL); cin.tie(0); cout.tie(0);
#define endl '\n'
#define yes void (cout << "YES" << endl)
#define no void (cout << "NO" << endl)
#define pb push_back
#define F first
#define S second
#define ld long double
#define fixed(g) fixed<<setprecision(g)
#define ll long long
using namespace std;
const ll N = 2e6 + 9 ;
const ll oo = 1e9 + 7 ;
ll n , m , k , x , y , z , g , gg , ans , sum , sum2 , cnt , dis[N] ,  sz , mn , a[N] , b[N] , last ;
bool ff , vis[N] ;
vector<pair<ll , ll> >v[N] ;
int main(){
fast
    sum = 0 ;
    cin >> n ;
    for(ll i=0 ; i<n ; i++)cin >> a[i] ;
    for(ll i=0 ; i<n ; i++){
        cin >> b[i] ;
        sum +=b[i];
        sum %=oo;
    }
    a[n] = -1 , b[n] = -1 , last = 0 ;
    for(ll i=0 ; i<n ; i++){
        if(a[i]==a[i+1]){
            x +=b[i] ;
            x %=oo;
        }
        else {
        //        cout<<sum<<' '<<x<<' '<<a[i]<<endl;
            x +=b[i] ;
            x %=oo
            sum%=oo;
            y = sum*(sum+1) ;
            z = a[i]*(a[i]+1);
            g = y ;
            gg = last*(last+1) ;
            y/=2;//6
            z/=2;//3
            g/=2;//6
            gg/=2;//1
            y%=oo;
            z%=oo;
            g%=oo;
            gg%=oo;
            ans += z * y ;
            ans -= g * gg;
            ans%=oo;
            x%=oo;
            sum%=oo;
            sum -= x ;
            x = 0 , y = 0 , z = 0 , g=0 , gg=0;
            last = a[i];
        }
    }
    cout << ans << endl ;
return 0 ;
}

Compilation message

fancyfence.cpp: In function 'int main()':
fancyfence.cpp:38:19: error: expected ';' before 'sum'
   38 |             x %=oo
      |                   ^
      |                   ;
   39 |             sum%=oo;
      |             ~~~