Submission #914566

#TimeUsernameProblemLanguageResultExecution timeMemory
914566NurislamStove (JOI18_stove)C++14
50 / 100
1064 ms4684 KiB
#include <bits/stdc++.h> using namespace std; #define pb push_back #define ff first #define ss second #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #define int long long ///* __ __ __ */ ///* ====== _ /| /| __ _ / | | /| | @ | | | | / /| |\ | / | | @ | / */ ///* \- || |_| |_ / |/ | | | |_ |- | |--| /-| | | \ \ |==| |- /=| | \ | | |--| | |- */ ///* || | | |_ / | |__| _| |_ \__ | | / | |__ | __| | | | \ / | | \| \__ | | | | \ */ ///* typedef vector<int> vi; typedef pair<int,int> pii; typedef vector<pii> vii; typedef vector<vi> vv; const int N = 2e6+4, inf = 1e8; void solve(){ int n, k; cin >> n >> k; int a[n+1]{}; for(int i = 0; i < n; i++)cin >> a[i]; sort(a, a+n); vii v; for(int i = 0; i < n-1; i++){ v.pb({a[i+1]-a[i], i}); } int of[n]{}; k--; of[n-1] = 1; sort(rall(v)); while(k--){ of[(*v.begin()).ss]=1; v.erase(v.begin()); } int ans = 0, l = a[0]; for(int i = 0; i < n; i++){ if(of[i]){ ans+=a[i]-l+1; l = a[i+1]; } }cout << ans << '\n'; } main(){ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); int test = 1; //~ cin >> test; while(test--){ solve(); } }

Compilation message (stderr)

stove.cpp:46:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   46 | main(){
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...