# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
900681 | 2024-01-08T21:27:19 Z | 3laa | Fancy Fence (CEOI20_fancyfence) | C++14 | 57 ms | 3836 KB |
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #include <bits/stdc++.h> #include <unordered_map> #define endl '\n' #define mid ((l+r)/2) #define F first #define S second #define pb push_back #define yes void (cout<<"YES"<<endl) #define no void (cout<<"NO"<<endl) #define ump unordered_map <ll,ll> #define sp " " #define vll vector<ll> #define vint vector<int> #define pll pair<ll,ll> typedef long long ll; using namespace std; const ll inf=1e18+9; const ll M=1e9+7; ll n; ll h[100009]; ll w[100009]; int main(){ cin>>n; for(ll i=0 ; i<n ; i++){ cin>>h[i]; } ll W=0; for(ll i=0 ; i<n ; i++){ cin>>w[i]; W+=w[i]; W%=M; } vector<pll> v; v.pb({h[0],w[0]}); for(ll i=1 ; i<n ; i++){ if(h[i]==h[i-1]){ v[v.size()-1].S+=w[i]; v[v.size()-1].S%=M; } else v.pb({h[i],w[i]}); } ll x=((h[0]*(h[0]+1)/2))%M; ll y=((W*(W+1))/2)%M; ll ans=(x*y)%M; W-=w[0]; for(ll i=1 ; i<v.size() ; i++){ x=((h[i]*(h[i]+1))/2)%M; y=((W*(W+1))/2)%M; ans=(ans+((x*y)%M))%M; x=((h[i-1]*(h[i-1]+1))/2)%M; ans=((ans+M)-((x*y)%M))%M; W-=w[i]; } cout<<ans<<endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | Output is correct |
2 | Correct | 6 ms | 524 KB | Output is correct |
3 | Correct | 27 ms | 1012 KB | Output is correct |
4 | Correct | 54 ms | 1872 KB | Output is correct |
5 | Correct | 56 ms | 1868 KB | Output is correct |
6 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 6 ms | 604 KB | Output is correct |
4 | Correct | 28 ms | 2140 KB | Output is correct |
5 | Correct | 57 ms | 3684 KB | Output is correct |
6 | Correct | 57 ms | 3836 KB | Output is correct |
7 | Incorrect | 1 ms | 348 KB | Output isn't correct |
8 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |