# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
745957 | vjudge1 | Fancy Fence (CEOI20_fancyfence) | C++17 | 2 ms | 340 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int main(){
long long n; cin >> n;
long long x, e, hossz;
long long ans = 0;
vector<long long> w, h, comp;
long long wsum = 0;
for(long long i = 0; i < n; i++){
cin >> x;
h.push_back(x);
}
for(long long i = 0; i < n; i++){
cin >> x;
wsum += x;
w.push_back(x);
}
for(int i = 0; i < n; i++){
if(h[i] == 2){
if(i == 0) comp.push_back(w[i]);
else if(h[i-1] == 2) comp.back() += w[i];
else comp.push_back(w[i]);
}
}
for(int k : comp) {
ans += k*(k+1);
ans = ans % 1000000007;
}
/* hossz = (h[0]-1)*w[0];
for(int i = 1; i < n; i++){
if(h[i] == 2){
hossz += w[i];
}
else if(h[i-1] == 2){
ans += hossz*(hossz+1);
ans = ans % 1000000007;
hossz = 0;
}
// cout << hossz << " ";
} */
ans += wsum*(wsum+1)/2;
ans = ans % 1000000007;
cout << ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |