| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 210466 | mhy908 | Meetings (JOI19_meetings) | C++14 | 66 ms | 540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <bits/stdc++.h>
#define pb push_back
#define all(x) x.begin(), x.end()
using namespace std;
int st, fin;
bool comp(int a, int b){
if(a==st||b==fin)return 1;
if(a==fin||b==st)return 0;
return Query(st, a, b)==a;
}
unordered_map<int, vector<int> > ump;
void solve(vector<int> vc){
if(vc.size()<=1)return;
st=rand()%vc.size();
while(1){
fin=rand()%vc.size();
if(st!=fin)break;
}
ump[st].pb(st);
ump[fin].pb(fin);
vector<int> path;
path.pb(st);
for(int i=0; i<vc.size(); i++){
if(vc[i]==st||vc[i]==fin)continue;
int x=Query(st, fin, vc[i]);
if(ump[x].empty())path.pb(x);
ump[x].pb(vc[i]);
}
path.pb(fin);
sort(all(path), comp);
for(int i=0; i<path.size()-1; i++){
Bridge(min(path[i], path[i+1]), max(path[i], path[i+1]));
}
for(int i=0; i<path.size(); i++){
vector<int> temp=ump[path[i]];
ump[path[i]].clear();
solve(temp);
}
}
void Solve(int n){
srand(time(NULL));
vector<int> temp;
for(int i=0; i<n; i++)temp.pb(i);
solve(temp);
}
컴파일 시 표준 에러 (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... | ||||
