# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1013589 | daffuwu | Fancy Fence (CEOI20_fancyfence) | C++14 | 24 ms | 3928 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fr first
#define sc second
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
long long n, h[100069], w, dp[100069], ans, ps[100069];
const long long dv = 1e9+7;
stack<long long> stk;
long long calc(long long a, long long b)
{
if (a%2 == 0) a/=2;
else b/=2;
return a%dv*(b%dv)%dv;
}
int main()
{
long long i, j;
scanf("%lld", &n);
for (i=1; i<=n; i++)
{
scanf("%lld", h+i);
}
stk.push(0);
for (i=1; i<=n; i++)
{
scanf("%lld", &w);
ps[i] = ps[i-1]+w;
for (; h[i]<=h[stk.top()]; stk.pop());
j = stk.top();
ans += (calc(ps[i]-ps[j], ps[i]-ps[j]+1)-calc(ps[i-1]-ps[j], ps[i-1]-ps[j]+1))*calc(h[i], h[i]+1)%dv;
ans += dp[j]*w%dv;
ans %= dv;
dp[i] = (dp[j]+calc(h[i], h[i]+1)*(ps[i]-ps[j])%dv)%dv;
stk.push(i);
}
printf("%lld\n", ans);
}
컴파일 시 표준 에러 (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... |