Submission #379178

#TimeUsernameProblemLanguageResultExecution timeMemory
379178hackermubStove (JOI18_stove)C++17
100 / 100
26 ms2672 KiB
#include<bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int,int> #define float long double #define fi first #define se second #define pb push_back #define all(v) v.begin(),v.end() #define sz(v) (int)v.size() #define uid uniform_int_distribution<int> #define forn(i,st,n,inc) for(int i=st;i<n;i+=inc) #define rforn(i,st,n,inc) for(int i=st-1;i>=n;i-=inc) //mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); const int MOD = 1e9+7;//998244353; const int64_t INF = 1e18; ostream& operator<<(ostream& o,const string& s){ for(auto c:s) o<<c; return o; } template<typename F,typename S> ostream& operator<<(ostream& o,const pair<F,S>& p){ o<<"["<<p.fi<<","<<p.se<<"]"; return o; } template<typename... T,template<class...> class C> ostream& operator<<(ostream& o,const C<T...>& v){ o<<"["; int tot=0; for(auto x:v){ o<<x; if(tot<v.size()-1) o<<","; tot++; } o<<"]"; return o; } vector<string> vec_splitter(string s) { s += ','; vector<string> res; while(!s.empty()) { res.push_back(s.substr(0, s.find(','))); s = s.substr(s.find(',') + 1); } return res; } void debug_out( vector<string> __attribute__ ((unused)) args, __attribute__ ((unused)) int idx, __attribute__ ((unused)) int LINE_NUM) { cerr << endl; } template <typename Head, typename... Tail> void debug_out(vector<string> args, int idx, int LINE_NUM, Head H, Tail... T) { if(idx > 0) cerr << ", "; else cerr << "Line(" << LINE_NUM << ") "; stringstream ss; ss << H; cerr << args[idx] << " = " << ss.str(); debug_out(args, idx + 1, LINE_NUM, T...); } #ifdef OFFLINE clock_t Tm=clock(); #define debug(...) debug_out(vec_splitter(#__VA_ARGS__), 0, __LINE__, __VA_ARGS__) #else #define debug(...) #endif int32_t main(){ ios_base::sync_with_stdio(false);cin.tie(); //If you hack my code , You are gay int n,k; cin>>n>>k; vector<ll> v(n); for(int i=0;i<n;i++) cin>>v[i]; ll ans=v[n-1]-v[0]+1; vector<int> dif; for(int i=1;i<n;i++) dif.pb(v[i]-v[i-1]-1); sort(all(dif),greater<int>()); debug(ans); debug(dif); for(int i=2;i<=k;i++){ ans-=dif[i-2]; } ans=max(0LL,ans); cout<<ans; //mara kha #ifdef OFFLINE cerr<<"Time = "<<(double)(clock()-Tm)/CLOCKS_PER_SEC; #endif return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...