# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
750109 | 7as__7 | Zalmoxis (BOI18_zalmoxis) | C++17 | 237 ms | 10304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int, int>
#define all(x) x.begin(),x.end()
const int sz = 1e6 + 1, mod = 1e9 + 7, inf = -1e18;
int dp[10001][1001] = {};
signed main()
{
int n, k;
cin >> n >> k;
vector<int>a(n);
map<int, int>mp;
for (int i = 0; i < n; i++) {
cin >> a[i];
mp[a[i]]++;
}
int x = -1;
int num = -1;
for (int i = 1; i < n; i++) {
if (a[i] - a[i - 1] == -2) {
x = i + 1;
break;
}
if (a[i] - a[i - 1] == -1) {
if (mp[a[i] - 1]){
x = i + 1;
break;
}
}
}
for (int i = 0; i < n; i++) {
if (x == i)cout << a[i - 1] - 1 << ' ';
cout << a[i] << ' ';
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |