Submission #890143

#TimeUsernameProblemLanguageResultExecution timeMemory
890143MercubytheFirstStove (JOI18_stove)C++17
Compilation error
0 ms0 KiB
#include<iostream> #include<vector> using namespace std; using ll = long long; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); ll n, k; cin >> n >> k; vector<ll> v(n + 1); for(ll i = 1; i <= n; ++i) cin >> v[i]; vector<ll> diff(n); for(ll i = 1; i < n; ++i) diff[i] = v[i + 1] - v[i] - 1; sort(diff.begin() + 1, diff.end(), greater<ll>()); ll ans = n; for(ll i = k; i < n; ++i){ ans += diff[i]; } cout << ans << endl; }

Compilation message (stderr)

stove.cpp: In function 'int main()':
stove.cpp:17:5: error: 'sort' was not declared in this scope; did you mean 'qsort'?
   17 |     sort(diff.begin() + 1, diff.end(), greater<ll>());
      |     ^~~~
      |     qsort