답안 #652426

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
652426 2022-10-22T14:51:48 Z JooDdae Mountains (IOI17_mountains) C++17
0 / 100
1 ms 212 KB
#include "mountains.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

struct point{
   ll x, y;
   bool operator < (const point &a)const{
       return tie(x, y) < tie(a.x, a.y);
   }
   bool operator <= (const point &a)const{
       return tie(x, y) <= tie(a.x, a.y);
   }
   point operator - (const point &a)const{
       return {x-a.x, y-a.y};
   }
   bool operator == (const point &a)const{
       return tie(x, y) == tie(a.x, a.y);
   }
};

ll cross(point a, point b){
   return a.x * b.y - a.y * b.x;
}
int ccw(point a, point b, point c){
   ll re = cross(b-a, c-a);
   return re > 0 ? 1 : re < 0 ? -1 : 0;
}

int dp[2020][2020];

int maximum_deevs(vector<int> y) {
    int n = y.size();

    for(int i=1;i<=n;i++) {
        dp[i][i] = dp[i][i-1] = 1;
        for(int j=i-2, k=i-1, s=1;j>=1;j--) {
            if(ccw({i, y[i-1]}, {k, y[k-1]}, {j, y[j-1]}) >= 0) {
                s += dp[k-1][j+1], k = j;
            } else {
                dp[i][j] += dp[k+1][j];
            }
            dp[i][j] += s;
        }
    }
    
    return dp[n][1];
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Incorrect 1 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Incorrect 1 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Incorrect 1 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Incorrect 1 ms 212 KB Output isn't correct
4 Halted 0 ms 0 KB -