# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
58643 | reality | 장난감 기차 (IOI17_train) | C++17 | 667 ms | 25032 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
#include "train.h"
vi answer;
int n;
const int N = 1e6;
vi G[N];
int deg[N];
int d[N];
vi who;
void dfs(int node) {
for (auto it : G[node]) {
--deg[it];
if (!deg[it] && who[it])
dfs(it);
}
}
vi who_wins(vi a, vi b, vi u, vi v) {
n = a.size();
for (auto & it : b)
it ^= 1;
who = b;
for (int i = 0;i < u.size();++i)
G[v[i]].pb(u[i]),++d[u[i]];
answer.resize(n);
for (int i = 0;i < n;++i)
answer[i] = 1;
int ok;
do {
ok = 0;
who = b;
for (int i = 0;i < n;++i)
deg[i] = a[i] ? 1 : d[i];
for (int i = 0;i < n;++i)
if (!who[i] && answer[i])
dfs(i);
for (int i = 0;i < n;++i) {
if (!who[i] && answer[i] && deg[i] > 0)
ok = 1,answer[i] = 0;
answer[i] &= deg[i] <= 0;
}
} while (ok);
return answer;
}
컴파일 시 표준 에러 (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... |