Submission #1037819

#TimeUsernameProblemLanguageResultExecution timeMemory
1037819thdh__Stove (JOI18_stove)C++17
100 / 100
18 ms4676 KiB
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("avx,avx2,fma") #define ll long long #define pb push_back #define eb emplace_back #define pu push #define ins insert #define bruh ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); #define ff(x,a,b,c) for (auto x=a;x<=b;x+=c) #define fd(x,a,b,c) for (auto x=a;x>=b;x-=c) #define int ll using namespace std; //mt19937 mt(chrono::steady_clock::now().time_since_epoch().count()); typedef pair<int, int> ii; const int N = 2e5+5; const int mod = 1e9+7; const int INF = 1e18; using cd = complex<double>; const long double PI = acos(-1); int power(int a,int b) {ll x = 1;if (a >= mod) a%=mod; while (b) {if (b & 1) x = x*a % mod;a = a*a % mod;b>>=1;}return x;} int n,k; int a[N]; int pref[N]; void solve() { cin>>n>>k; for (int i=1;i<=n;i++) cin>>a[i]; priority_queue<int> p; for (int i=1;i<n;i++) p.push(a[i+1]-a[i]-1); int ans = a[n]-a[1]+1; k--; while (k--) ans -= p.top(), p.pop(); cout<<ans; } signed main() { bruh //freopen("input.inp","r",stdin); //freopen("output.inp","w",stdout); int t = 1; //cin>>t; while (t--) { solve(); cout<<"\n"; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...