# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
171147 | Nodir_Bobiev | Stove (JOI18_stove) | C++14 | 7 ms | 632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
# define FILE
using namespace std;
int main(){
# ifdef FILE
freopen( "input.txt", "r", stdin );
freopen( "output.txt", "w", stdout );
# endif
ios_base::sync_with_stdio( false );
int n, k;
cin >> n >> k;
vector < int > times;
for( int i = 0; i < n;i ++ ){
int tt;
cin >> tt;
times.push_back( tt );
}
int ans = times.back()-times[0]+1;
vector < int > diff;
for( int i = 0; i < n-1; i ++ ){
diff.push_back( times[i+1]-times[i]-1 );
}
sort( diff.rbegin(), diff.rend() );
for( int i = 0; i < k -1; i ++ )
ans -= diff[i];
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |