# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
223638 | Haunted_Cpp | Drvca (COCI19_drvca) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
#include <algorithm>
#pragma GCC optimize ("Ofast")
#pragma GCC target("fma,sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
#pragma GCC optimize("unroll-loops")
using namespace std;
const int N = 2e3;
int a [N];
bool vis [N];
int main () {
ios::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; i++) cin >> a[i];
sort (a, a + n);
for (int i = 0; i < n; i++) {
vector<int> up = {a[0]}, down;
if (i) up.emplace_back(a[i]);
const int diff = a[i] - a[0];
int nxt = a[i] + (a[i] - a[0]);
for (int j = 1; j < n; j++) {
if (j == i) continue;
if (a[j] == nxt) {
up.emplace_back(a[j]);
nxt += diff;
} else {
down.emplace_back(a[j]);
}
}
if ((int) down.size() <= 1) {
while ((int) down.size() == 0) {
int l = up.back ();
up.pop_back ();
down.emplace_back(l);
}
cout << (int) up.size() << '\n';
for (auto to : up) cout << to << ' ';
cout << '\n';
cout << (int) down.size() << '\n';
for (auto to : down) cout << to << ' ';
cout << '\n';
return 0;
}
const int d = down[1] - down[0];
for (int j = 1; j < (int) down.size(); j++) {
if (down[j] - down[j - 1] != d) {
goto fim;
}
}
cout << (int) up.size() << '\n';
for (auto to : up) cout << to << ' ';
cout << '\n';
cout << (int) down.size() << '\n';
for (auto to : down) cout << to << ' ';
cout << '\n';
return 0;
fim:;
}
cout << -1 << '\n';
return 0;
}