# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
310000 | ttnhuy313 | Mountains (IOI17_mountains) | C++14 | 353 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define sqr(a) (a * a)
typedef pair <int, int> ii;
const int N = 2005;
int dp[N][N];
int cross(ii a, ii b) {
return a.first * b.second - a.second * b.first;
}
bool ccw(ii a, ii b, ii c) {
return cross(ii(b.first - a.first, b.second - a.second), ii(c.first - a.first, c.second - a.second)) > 0;
}
int maximum_deevs(vector <int32_t> y) {
int n = y.size(), ret = 0;
for (int mask = 0; mask < (1 << n); ++mask) {
int t = __builtin_popcount(mask);
for (int i = 0; i < n; ++i) if (mask & (1 << i)) {
for (int j = i + 1; j < n; ++j) if (mask & (1 << j)) {
bool ok = false;
for (int k = i + 1; k < j; ++k) if (ccw(ii(j, y[j]), ii(k, y[k]), ii(i, y[i]))) {
ok = true;
}
if (!ok) t = -1;
}
# | 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... |