# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
293507 | crossing0ver | Interval Collection (CCO20_day2problem2) | C++17 | 6 ms | 1920 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define vi vector<int>
#define pii pair<int,int>
#define fi first
#define se second
#define pb push_back
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
#define oset tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>
main() {
int n;
cin >> n;
vi v(n);
for (int i = 0; i < n; i++) {
cin >> v[i];
--v[i];
}
vi g = v;
sort(g.begin(),g.end());
// INVALID
for (int i = 0; i < n; i++)
if (g[i] < i) {
cout <<-1;
return 0;
}//
int ans = 0;
while(v.size()) {
int n = v.size();
for (int i = n-1; i >= 0; i --) {
if (v[i] == n-1) {
int j = i;
while (j < n-1) {
swap(v[j],v[j+1]);
ans++;
j++;
}
v.pop_back();
for (int i = 0; i < n-1; i++)
if (v[i] == n-1)
v[i]--;
break;
//cout << ans;
}
// cout <<"DS";
}
}
cout << ans;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |