# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
550941 | Pherokung | 수열 (APIO14_sequence) | C++14 | 1043 ms | 81124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define N 100005
#define K 205
#define ll long long
typedef pair<ll,int> pa;
struct line{
ll m,c;
int idx;
line(ll m,ll c,int i) : m(m), c(c), idx(i) {}
ll dot(ll x){ return m*x + c;}
ll inter(line l){ return floor((long double)(c-l.c)/(l.m-m));}
};
struct CHT{
deque<line> hull;
void add(line l){
if(hull.size() >= 1 && hull.back().m == l.m && hull.back().c == l.c) hull.pop_back();
while(hull.size() >= 2 && l.inter(hull.back()) <= hull.back().inter(hull[hull.size()-2])) hull.pop_back();
hull.push_back(l);
}
pa query(ll x){
while(hull.size() >= 2 && hull[0].dot(x) <= hull[1].dot(x)) hull.pop_front();
return {hull[0].dot(x), hull[0].idx};
}
};
int n,k,a[N],pre[N],P[K][N],pos;
ll dp[2][N],ans;
int main(){
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |