| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 527164 | squiddy | Calvinball championship (CEOI15_teams) | C++14 | 7 ms | 4556 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define FOR(v, s, e) for (int v = s; v < e; v++)
#define FOR_REV(v, s, e) for (int v = e - 1; v >= s; v--)
#define MOD 1000007
int n, ans, cmax = 1;
int pf[105][105][105];
int main() {
cin >> n;
if (n > 100) return 1;
FOR(i, 0, n) {
FOR(k, 0, n)
pf[0][i][k + 1] = pf[0][i][k] + 1;
}
FOR(i, 1, n) {
FOR(j, 0, n) {
FOR(k, 0, n) {
pf[i][j][k + 1] = (pf[i][j][k] + pf[i - 1][j][j + 1] + pf[i - 1][j + 1][j + 2] - pf[i - 1][j + 1][j + 1]) % MOD;
}
}
}
FOR_REV(i, 0, n) {
int cval;
cin >> cval;
ans = (ans + pf[i][cmax - 1][cval - 1]) % MOD;
cmax = max(cmax, cval);
}
cout << (ans + 1) % MOD;
}| # | 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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
