# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
87777 | KCSC | Bali Sculptures (APIO15_sculpture) | C++14 | 158 ms | 2340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int DIM = 2005;
int dp1[DIM]; long long psm[DIM];
bool dp2[DIM][DIM];
bool solve(long long val, int n, int a, int b) {
long long aux = ((1LL << 50) - 1) ^ val;
if (a == 1) {
dp1[0] = 0;
for (int i = 1; i <= n; ++i) {
dp1[i] = b + 1;
for (int j = i; j >= 1; --j) {
if (!((psm[i] - psm[j - 1]) & aux)) {
dp1[i] = min(dp1[i], dp1[j - 1] + 1); } } }
return dp1[n] <= b; }
else {
dp2[0][0] = true;
for (int k = 1; k <= b; ++k) {
for (int i = 1; i <= n; ++i) {
dp2[k][i] = false;
for (int j = i; j >= 1; --j) {
if (!((psm[i] - psm[j - 1]) & aux)) {
dp2[k][i] |= dp2[k - 1][j - 1]; } } } }
for (int k = a; k <= b; ++k) {
if (dp2[k][n]) {
return true; } }
return false; } }
# | 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... |