이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
namespace CHT
{
typedef __int128 dll;
struct Line { ll a, b; int p; };
struct Frac
{
ll u, d;
Frac(ll _u, ll _d) : u(_u), d(_d) { if(d<0) u=-u, d=-d; }
bool operator < (const Frac &ot) const { return (dll)u*ot.d < (dll)ot.u*d; }
bool operator > (const Frac &ot) const { return (dll)u*ot.d > (dll)ot.u*d; }
};
ll divfloor(ll u, ll d) { return u/d - ((u^d)<0 && u%d); }
ll divceil(ll u, ll d) { return u/d + ((u^d)>0 && u%d); }
// min/max : ?, slope : ?, dir : ?
struct CHT
{
// Get cross point of line p, q
// If all queries are integer, change 'Frac' to 'div'
Frac cross(const Line &p, const Line &q) { return Frac(p.b-q.b, q.a-p.a); } // dir + : divfloor, dir - : divceil
deque<Line> V;
// Insert line p = ax+b
// b must be increasing (or decreasing) ('slope')
// cross(V[i-1], V[i]) < (or >) cross(V[i], V[i+1]) ('dir')
void push(Line p)
{
if(!V.empty() && V.back().a==p.a)
{
if(V.back().b <= p.b) return; // min : <= , max : >=
V.pop_back();
}
while(V.size()>1 && !(cross(V[V.size()-2], V[V.size()-1]) < cross(V[V.size()-1], p))) V.pop_back(); // dir + : <, dir - : >
V.push_back(p);
}
// Get min (or max) value at x in O(logN)
int query(ll x)
{
assert(!V.empty());
int lo=0, hi=V.size();
while(lo+1<hi)
{
int mid=lo+hi>>1;
if(cross(V[mid-1], V[mid]) < Frac(x, 1)) lo=mid; // dir + : <, dir - : >
else hi=mid;
}
// return V[lo].a*x+V[lo].b;
return V[lo].p;
}
// Get min (or max) value at x in ammortized O(1)
// x must be increasing (or decreasing) ('dir')
int query2(ll x)
{
assert(!V.empty());
while(V.size()>1 && cross(V[0], V[1]) < Frac(x, 1)) V.pop_front(); // dir + : <, dir - : >
// return V[0].a*x+V[0].b;
return V[0].p;
}
};
}
const int MAXN = 1e5;
int N, K;
ll A[MAXN+10];
namespace Alien
{
// MAXN must be defined
const int MAXN = 1e5;
int N;
// dp[i] : optimal dp value of i
// cnt[i] : how much transitions were used in optimal dp[i]
// memo[i] : previous transition position from i
// V : restored optimal solution
ll dp[MAXN+10];
int cnt[MAXN+10], memo[MAXN+10];
vector<int> V;
void init(int _N)
{
N=_N;
}
// For given lambda, calculate dp, cnt, memo, V
// dp[i] = min(or max)_{j<i} (dp[j] + cost(j, i)*2 - lambda)
void solve(ll lambda)
{
// initialize dp, cnt, memo, V, (and other data structures)
for(int i=0; i<=N; i++) dp[i]=cnt[i]=memo[i]=0;
V.clear();
CHT::CHT cht;
cht.push({0, 0, 0});
for(int i=1; i<=N; i++)
{
// get_opt(i), cost(p, q) must be implemented
// opt = argmin(or max)_{j<i} (dp[j] + cost(j, i)*2)
int opt = cht.query(A[i]);
dp[i] = dp[opt] + (A[i]-A[opt])*(A[i]-A[opt])*2 - lambda; // Don't forget *2
cnt[i] = cnt[opt]+1;
memo[i] = opt;
cht.push({-4*A[i], 2*A[i]*A[i]+dp[i], i});
}
for(int i=N; i>0;)
{
V.push_back(i);
i=memo[i];
}
V.push_back(0);
reverse(V.begin(), V.end());
}
// Get optimal dp[N][K] for given K
// Returns (answer, restored solution)
// dp[i][k] = min(or max)_{j<i} (dp[j][k-1] + cost(j, i))
pair<ll, vector<int>> alien(int K)
{
// lambda equals slope
// minimum : K increase, lambda increase
// maximum : k increase, lambda decrease
ll lo=-1e12, hi=1e12; // range for lambda is [2*lo+1, 2*hi+1]
while(lo+1<hi)
{
ll mid=lo+hi>>1;
solve(2*mid+1);
if(K <= cnt[N]) hi=mid; // min : <= , max : >=
else lo=mid;
}
vector<int> P1, P2, ansV;
solve(2*lo+1); P1=V;
solve(2*hi+1); P2=V;
if(P1.size()>P2.size()) swap(P1, P2);
if(P1.size()-1==K) ansV=P1;
else if(P2.size()-1==K) ansV=P2;
else
{
assert(P1.size()-1<K && K<P2.size()-1);
for(int i=0, j=0; i+1<P2.size(); i++)
{
for(; j+1<P1.size() && P1[j+1]<P2[i+1]; j++);
if(j+1<P1.size() && P1[j]<=P2[i] && P2[i+1]<=P1[j+1] && j+P2.size()-i-1==K)
{
for(int k=0; k<=j; k++) ansV.push_back(P1[k]);
for(int k=i+1; k<P2.size(); k++) ansV.push_back(P2[k]);
// assert(ansV.size()-1==K);
break;
}
}
}
solve(2*hi);
ll ans=dp[N]/2+hi*K;
return {ans, ansV};
}
}
int main()
{
scanf("%d%d", &N, &K); K++;
for(int i=1; i<=N; i++) scanf("%lld", &A[i]);
for(int i=1; i<=N; i++) A[i]+=A[i-1];
Alien::init(N);
auto [ans, ansV] = Alien::alien(K);
ans=(A[N]*A[N]-ans)/2;
printf("%lld\n", ans);
for(int i=1; i+1<ansV.size(); i++) printf("%d ", ansV[i]);
printf("\n");
}
컴파일 시 표준 에러 (stderr) 메시지
sequence.cpp: In member function 'int CHT::CHT::query(ll)':
sequence.cpp:51:27: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
51 | int mid=lo+hi>>1;
| ~~^~~
sequence.cpp: In function 'std::pair<long long int, std::vector<int> > Alien::alien(int)':
sequence.cpp:137:22: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
137 | ll mid=lo+hi>>1;
| ~~^~~
sequence.cpp:148:23: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
148 | if(P1.size()-1==K) ansV=P1;
| ~~~~~~~~~~~^~~
sequence.cpp:149:28: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
149 | else if(P2.size()-1==K) ansV=P2;
| ~~~~~~~~~~~^~~
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from sequence.cpp:1:
sequence.cpp:152:31: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
152 | assert(P1.size()-1<K && K<P2.size()-1);
| ~~~~~~~~~~~^~
sequence.cpp:152:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
152 | assert(P1.size()-1<K && K<P2.size()-1);
| ~^~~~~~~~~~~~
sequence.cpp:153:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
153 | for(int i=0, j=0; i+1<P2.size(); i++)
| ~~~^~~~~~~~~~
sequence.cpp:155:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
155 | for(; j+1<P1.size() && P1[j+1]<P2[i+1]; j++);
| ~~~^~~~~~~~~~
sequence.cpp:156:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
156 | if(j+1<P1.size() && P1[j]<=P2[i] && P2[i+1]<=P1[j+1] && j+P2.size()-i-1==K)
| ~~~^~~~~~~~~~
sequence.cpp:156:88: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
156 | if(j+1<P1.size() && P1[j]<=P2[i] && P2[i+1]<=P1[j+1] && j+P2.size()-i-1==K)
| ~~~~~~~~~~~~~~~^~~
sequence.cpp:159:37: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
159 | for(int k=i+1; k<P2.size(); k++) ansV.push_back(P2[k]);
| ~^~~~~~~~~~
sequence.cpp: In function 'int main()':
sequence.cpp:182:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
182 | for(int i=1; i+1<ansV.size(); i++) printf("%d ", ansV[i]);
| ~~~^~~~~~~~~~~~
sequence.cpp:174:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
174 | scanf("%d%d", &N, &K); K++;
| ~~~~~^~~~~~~~~~~~~~~~
sequence.cpp:175:34: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
175 | for(int i=1; i<=N; i++) scanf("%lld", &A[i]);
| ~~~~~^~~~~~~~~~~~~~~
# | 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... |