# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
721637 | OttincaM | Art Collections (BOI22_art) | C++17 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <chrono>
#include <random>
#include <iomanip>
#include <algorithm>
#include <utility>
#include <fstream>
#include <numeric>
#include <sstream>
#include <functional>
#include <memory.h>
#include <vector>
#include <map>
#include <set>
#include <deque>
#include <string>
#include <queue>
#include <array>
#include <stack>
#include <bitset>
#include <unordered_set>
#include <unordered_map>
#include <ctime>
#include <cmath>
#include <climits>
#include "stdio.h"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include "art.h"
using namespace std;
void solve(int N){
int n = N;
vector <int> fnd;
fnd.push_back(1);
for(int i = 2; i <= n; i ++){
vector <int> f, s = fnd;
f.push_back(i);
for(int &t: fnd) f.push_back(t);
s.push_back(i);
for(int j = i + 1; j <= n; j ++){
f.push_back(j);
s.push_back(j);
}
int x = publish(f);
int y = publish(s);
bool ch = 0;
vector <int> nwf;
for(int j = 1; j <= i - 1; j ++){
int Y = j - 1, X = i - 1 - Y;
if(!ch && X - Y == x - y){
ch = 1;
nwf.push_back(i);
}
nwf.push_back(fnd[j - 1]);
}
if(!ch) nwf.push_back(i);
fnd = nwf;
}
answer(fnd);
}
컴파일 시 표준 에러 (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... |