# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996171 | faqinyeager | Stove (JOI18_stove) | C++17 | 95 ms | 12484 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int n, k;
vector<ll> t;
int main(){
cin >> n >> k;
t.resize(n);
for(int i = 0; i < n; i++) cin >> t[i];
if(n <= k){
cout << n;
return 0;
}
vector<pair<ll, pair<ll, ll>>> pos(n - 1);
for(int i = 0; i < n - 1; i++){
int p = t[i + 1] - t[i];
pos[i].first = p;
pos[i].second = {i, i + 1};
}
sort(pos.begin(), pos.end());
vector<pair<pair<ll, ll>, ll>> tmp;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |