| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 877488 | vjudge1 | Art Collections (BOI22_art) | C++17 | 579 ms | 64228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "art.h"
#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define pb push_back
#define mp make_pair
#define mt make_tuple
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
using ll = long long;
using ld = long double;
const int mxn = 4005;
int c[mxn][mxn];
int n;
vector<int> vec;
int og;
bool comp(int a,int b){
if(c[a][b] != -1)return c[a][b];
swap(vec[a-1], vec[b-1]);
int nw = publish(vec);
swap(vec[a-1], vec[b-1]);
return (a < b) ^ (nw < og);
}
void solve(int _n) {
memset(c, -1, sizeof c);
n = _n;
vector<int> v;
for(int i = 1;i<=n;i++){
v.pb(i);
vec.pb(i);
}
og = publish(vec);
stable_sort(all(v), comp);
answer(v);
}
컴파일 시 표준 에러 (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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
