| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 578281 | Theo830 | 자동 인형 (IOI18_doll) | C++17 | 1 ms | 392 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll INF = 1e18+7;
ll MOD = 998244353;
typedef pair<ll,ll> ii;
#define iii pair<ll,ii>
#define f(i,a,b) for(ll i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
///I hope I will get uprating and don't make mistakes
///I will never stop programming
///sqrt(-1) Love C++
///Please don't hack me
///@TheofanisOrfanou Theo830
///Think different approaches (bs,dp,greedy,graphs,shortest paths,mst)
///Stay Calm
///Look for special cases
///Beware of overflow and array bounds
///Think the problem backwards
///Training
#include "doll.h"
vector<int> X,Y,C;
ll pos = 1;
void solve(ll s,vll arr){
if(arr.size() == 1){
X[s - 1] = Y[s - 1] = arr[0];
return;
}
vll exo[2];
f(i,0,arr.size()){
exo[i % 2].pb(arr[i]);
}
if(arr.size() % 2){
exo[1].pb(exo[0].back());
exo[0].back() = -s;
}
X[s - 1] = -pos;
Y[s - 1] = -(pos + 1);
pos += 2;
solve(-X[s - 1],exo[0]);
solve(-Y[s - 1],exo[1]);
}
void create_circuit(int M, std::vector<int> A) {
int n = A.size();
f(i,0,M+1){
C.pb(0);
}
C[0] = A[0];
vll mp[M+5];
set<ll>ex;
A.pb(0);
f(i,0,n){
mp[A[i]].pb(A[i+1]);
}
set<ll>ev;
f(i,0,n){
if(ev.count(A[i-1])){
continue;
}
ev.insert(A[i]);
C[A[i]] = pos;
solve(pos,mp[A[i]]);
}
answer(C, X, Y);
}
컴파일 시 표준 에러 (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... | ||||
