Submission #983077

#TimeUsernameProblemLanguageResultExecution timeMemory
983077Hugo1729Split the sequence (APIO14_sequence)C++11
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define f first #define s second ll dp[100001*4][202*4]={0}; ll pref[100001*4]={0}; ll p[100001*4][202*4]; struct line{ ll m, c; line(ll _m, ll _c){m=_m;c=_c;}; ll operator() (ll x){return x*m+c;}; }; int main(){ // cin.tie(0)->sync_with_stdio(0); int n, k; cin >> n >> k; vector<ll> a(n); for(int i=0;i<n;i++)cin >> a[i]; for(int i=0;i<n;i++)pref[i+1]=pref[i]+a[i]; for(int j=1;j<=k+1;j++){ deque<pair<line,int>> q; for(int i=1;i<=n;i++){ //maak i = 0 line l(pref[i-1],dp[i-1][j-1]-pref[i-1]*pref[n]); while(q.size()>1&&(l.c-q[1].f.c)*(q[1].f.m-q[0].f.m)<=(q[0].f.c-q[1].f.c)*(q[1].f.m-l.m))q.pop_front(); q.push_front({l,i-1}); while(q.size()>1&&q[q.size()-1].f(pref[i])<=q[q.size()-2].f(pref[i]))q.pop_back(); dp[i][j]=q.back().f(pref[i])-pref[i]*pref[i]+pref[i]*pref[n]; p[i][j]=q.back().s; // for(int x=0;x<i;x++){ // if(dp[x][j-1]+(pref[i]-pref[x])*(pref[n]-pref[i])>=dp[i][j]){ // dp[i][j]=dp[x][j-1]+(pref[i]-pref[x])*(pref[n]-pref[i]); // p[i][j]=x; // } // } // cout << '(' << i << ' ' << j << ')' << dp[i][j] << ' ' << p[i][j] << ' '; } // cout << '\n'; } cout << dp[n][++k] << '\n'; int sus=p[n][k--]; while(k>0){ cout << sus << ' '; sus=p[sus][k--]; } return 0; // 7 3 // 4 1 3 4 0 2 3 }

Compilation message (stderr)

/tmp/ccqhmjlp.o: in function `main':
sequence.cpp:(.text.startup+0x9): relocation truncated to fit: R_X86_64_PC32 against symbol `std::cin' defined in .bss._ZSt3cin section in /usr/lib/gcc/x86_64-linux-gnu/10/libstdc++.a(globals_io.o)
sequence.cpp:(.text.startup+0xad): relocation truncated to fit: R_X86_64_PC32 against symbol `std::cin' defined in .bss._ZSt3cin section in /usr/lib/gcc/x86_64-linux-gnu/10/libstdc++.a(globals_io.o)
sequence.cpp:(.text.startup+0xdc): relocation truncated to fit: R_X86_64_PC32 against symbol `pref' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0xf0): relocation truncated to fit: R_X86_64_PC32 against symbol `pref' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x179): relocation truncated to fit: R_X86_64_PC32 against symbol `pref' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x198): relocation truncated to fit: R_X86_64_PC32 against symbol `dp' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x1bd): relocation truncated to fit: R_X86_64_PC32 against symbol `pref' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x6d2): relocation truncated to fit: R_X86_64_PC32 against symbol `pref' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x7c1): relocation truncated to fit: R_X86_64_PC32 against symbol `std::cout' defined in .bss._ZSt4cout section in /usr/lib/gcc/x86_64-linux-gnu/10/libstdc++.a(globals_io.o)
sequence.cpp:(.text.startup+0x7d2): relocation truncated to fit: R_X86_64_PC32 against symbol `dp' defined in .bss section in /tmp/ccqhmjlp.o
sequence.cpp:(.text.startup+0x845): additional relocation overflows omitted from the output
/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status