# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
856057 | sofijavelkovska | Fancy Fence (CEOI20_fancyfence) | C++14 | 61 ms | 10192 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long MAXN=1e5, MOD=1e9+7;
long long h[MAXN], w[MAXN];
bool compare(long long x, long long y)
{
if (h[x]==h[y])
return x<y;
return h[x]<h[y];
}
long long outer(long long i, long long leftsum, long long rightsum)
{
long long rectangles=0;
rectangles=(rectangles+h[i]*w[i]%MOD*leftsum%MOD)%MOD;
rectangles=(rectangles+h[i]*(h[i]-1)/2%MOD*w[i]%MOD*leftsum%MOD)%MOD;
rectangles=(rectangles+h[i]*w[i]%MOD*rightsum%MOD)%MOD;
rectangles=(rectangles+h[i]*(h[i]-1)/2%MOD*w[i]%MOD*rightsum%MOD)%MOD;
rectangles=(rectangles+h[i]*leftsum%MOD*rightsum%MOD)%MOD;
rectangles=(rectangles+h[i]*(h[i]-1)/2%MOD*leftsum%MOD*rightsum%MOD)%MOD;
return rectangles;
}
long long inner(long long i)
{
# | 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... |