# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
109884 | Saboon | Bali Sculptures (APIO15_sculpture) | C++14 | 927 ms | 8356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 2000 + 10;
const ll inf = 1e18;
bool g[maxn][maxn], cp[maxn][maxn];
ll a[maxn], dp[110][110];
int pd[maxn];
int shortest_path(int n, int A, int B){
if (A == 1){
for (int i = 1; i <= n; i++)
pd[i] = n + 1;
pd[0] = 0;
for (int i = 1; i <= n; i++)
for (int j = 0; j < i; j++)
if (g[j][i])
pd[i] = min(pd[i], pd[j] + 1);
return pd[n] <= B;
}
memset(dp, 0, sizeof dp);
dp[0][0] = 1;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= B; j++)
for (int k = i - 1; k >= 0; k--)
dp[i][j] |= dp[k][j - 1];
int ret = 0;
# | 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... |