| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 926196 | Tuanlinh123 | 항공 노선도 (JOI18_airline) | C++17 | 3476 ms | 298412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Alicelib.h"
#include<bits/stdc++.h>
#define ll int
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
using namespace std;
void Alice(ll n, ll m, ll A[], ll B[])
{
vector <pll> ans;
for (ll i=0; i<m; i++)
ans.pb({A[i], B[i]});
for (ll i=0; i<10; i++)
{
for (ll j=0; j<n; j++)
if (j&1<<i)
ans.pb({n+i, j});
if (i) ans.pb({n+i, n+i-1});
}
for (ll j=0; j<n; j++)
ans.pb({n+10, j});
InitG(n+11, ans.size());
for (ll i=0; i<ans.size(); i++)
MakeG(i, ans[i].fi, ans[i].se);
}#include "Boblib.h"
#include<bits/stdc++.h>
#define ll int
#define pll pair<ll, ll>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ld long double
using namespace std;
void Bob(ll v, ll e, ll U[], ll V[])
{
ll n=v-11;
vector <vector <ll>> A(v);
for (ll i=0; i<e; i++)
A[U[i]].pb(V[i]), A[V[i]].pb(U[i]);
ll root=0;
for (ll i=0; i<v; i++)
if (A[i].size()==n)
{root=i; break;}
vector <ll> check(v, 0), idx(v, 0);
for (ll i:A[root]) check[i]=1;
vector <ll> line;
pll first={1e9, 1e9};
for (ll i=0; i<v; i++)
if (!check[i])
first=min(first, {A[i].size(), i});
line.pb(first.se);
while (1)
{
ll cand=-1;
for (ll j:A[line.back()])
if (!check[j] && (line.size()==1 || j!=line[line.size()-2]))
{cand=j; break;}
if (cand==-1) break;
line.pb(cand);
}
reverse(line.begin(), line.end());
for (ll i=0; i<line.size(); i++)
for (ll j:A[line[i]])
if (check[j])
idx[j]|=1<<i;
vector <pll> ans;
for (ll i=0; i<e; i++)
if (check[U[i]] && check[V[i]])
ans.pb({idx[U[i]], idx[V[i]]});
InitMap(n, ans.size());
for (pll i:ans) MakeMap(i.fi, i.se);
}
컴파일 시 표준 에러 (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... | ||||
