# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
582601 | amunduzbaev | Triangles (CEOI18_tri) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "trilib.h"
//~ #ifndef EVAL
#include "trilib.c"
//~ #endif
#include "bits/stdc++.h"
using namespace std;
#define ar array
typedef int64_t ll;
vector<int> Sort(int l, int r){
if(l == r) return {l};
int m = (l + r) >> 1;
auto lx = Sort(l, m), rx = Sort(m + 1, r);
vector<int> res = lx;
res.insert(res.end(), rx.begin(), rx.end());
return res;
}
signed main(){
//~ ios::sync_with_stdio(0); cin.tie(0);
int n = get_n();
//~ vector<int> p = Sort(2, n);
give_answer(1);
}