# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1130581 | lopkus | Art Collections (BOI22_art) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "art.h"
#define int long long
using namespace std;
int n;
//vector<int> b(4001);
vector<int> a(4001);
/*
int publish(vector<int> R) {
int x = 0;
for(int i = 0; i < n; i++) {
if(a[i] > b[i]) {
x += 1;
}
}
return x;
}
void answer(vector<int> R) {
cout << "! ";
for(int i = 0; i < n; i++) {
cout << R[i] << " ";
}
}
*/
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for(int i = 0; i < n; i++) {
//cin >> b[i];
}
for(int i = 0; i < n; i++) {
a[i] = i + 1;
}
while(1) {
int u = publish(a);
if(!u) {
answer(a);
return 0;
}
for(int i = 0; i < n; i++) {
for(int j = i + 1; j < n; j++) {
swap(a[i], a[j]);
int k = publish(a);
if(k < u) {
// stay
}
else {
swap(a[i], a[j]);
}
}
}
}
}