Submission #48442

#TimeUsernameProblemLanguageResultExecution timeMemory
48442arman_ferdousStove (JOI18_stove)C++17
100 / 100
32 ms11172 KiB
#include <bits/stdc++.h>
using namespace std;

const int N = 1e5+10;
long long arr[N], dif[N];

int main() {
	int n, k;
	scanf("%d %d", &n, &k);
	for(int i = 0; i < n; i++)
		scanf("%lld", &arr[i]);

	for(int i = 0; i+1 < n; i++)
		dif[i] = arr[i+1] - arr[i] - 1;
	sort(dif,dif+n-1,greater<int>());

	long long ans = arr[n-1] - arr[0] + 1;
	for(int i = 1; i < k; i++) 
		ans -= dif[i-1];
	
	printf("%lld", ans);
	return 0;
}

Compilation message (stderr)

stove.cpp: In function 'int main()':
stove.cpp:9:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &k);
  ~~~~~^~~~~~~~~~~~~~~~~
stove.cpp:11:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld", &arr[i]);
   ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...