# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
974829 | 2024-05-03T20:55:46 Z | imarn | Fancy Fence (CEOI20_fancyfence) | C++14 | 1 ms | 348 KB |
#include<bits/stdc++.h> #define f first #define s second #define pb push_back #define pii pair<int,int> #define ll long long #define sz(x) (ll)x.size() #define pp pair<int,pii> using namespace std; const int mxn=1e5+5,inf=1e9+7; int pr[mxn]{0}; ll sz[mxn]{0}; int get(int r){ return pr[r]==r?r:pr[r]=get(pr[r]); } int main(){ ios_base::sync_with_stdio(0);cin.tie(0);ll ans=0; int n;cin>>n;vector<pp>v(n);iota(pr,pr+n+1,0); for(int i=0;i<n;i++)cin>>v[i].f,v[i].s.s=i+1; for(int i=0;i<n;i++)cin>>v[i].s.f;sort(v.begin(),v.end(),greater<pp>()); for(auto it : v){int i=it.s.s;pr[i]=i;sz[i]=it.s.f; ans+=sz[i]*(sz[i]+1)/2*(it.f+1)*(it.f)/2; if(pr[it.s.s-1]){ int u=get(it.s.s-1); ans-=(sz[u]+1)*(sz[u])/2*(it.f+1)*(it.f)/2+(sz[i]+1)*(sz[i])/2*(it.f+1)*(it.f)/2; sz[i]+=sz[u]; pr[u]=i; ans+=(sz[i]+1)*(sz[i])/2*(it.f+1)*(it.f)/2; } if(pr[it.s.s+1]){ int u=get(it.s.s+1); ans-=(sz[u]+1)*(sz[u])/2*(it.f+1)*(it.f)/2+(sz[i]+1)*(sz[i])/2*(it.f+1)*(it.f)/2; sz[i]+=sz[u]; pr[u]=i; ans+=(sz[i]+1)*(sz[i])/2*(it.f+1)*(it.f)/2; } }cout<<ans; }
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 | 344 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 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 | 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 | - |