Submission #559837

#TimeUsernameProblemLanguageResultExecution timeMemory
559837StavabStove (JOI18_stove)C++14
100 / 100
30 ms964 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n, k; scanf("%d %d", &n, &k); k--; priority_queue<int> pq; int start, input, prev; scanf("%d", &start); prev = start; for(int i = 1; i < n; i++) { scanf("%d", &input); pq.push(input - prev - 1); prev = input; } int answer = prev - start + 1; while(!pq.empty()) { if(k > 0) { answer -= pq.top(); pq.pop(); k--; } else break; } printf("%d\n", answer); return 0; }

Compilation message (stderr)

stove.cpp: In function 'int main()':
stove.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |     scanf("%d %d", &n, &k);
      |     ~~~~~^~~~~~~~~~~~~~~~~
stove.cpp:14:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |     scanf("%d", &start);
      |     ~~~~~^~~~~~~~~~~~~~
stove.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |         scanf("%d", &input);
      |         ~~~~~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...