이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <bitset>
#include <queue>
#include <string.h>
#include <assert.h>
using namespace std;
const int n_max = 6000;
vector<int> backward[n_max]; // edges run in the reverse direction!
bool whowin[n_max][n_max]; // position, then state. true = unknown, false = b wins
int deg[n_max][n_max]; // this is the out degree
void init(vector<int> &u, vector<int> &v) {
memset(deg, 0, sizeof(deg));
for(int i=0; i<u.size(); i++) {
backward[v[i]].push_back(u[i]);
for(int j=0; j<n_max; j++) {
deg[u[i]][j]++;
}
}
}
vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
init(u,v);
int n = a.size();
queue<pair<int,int>> bfs;
for(int i=0; i<n; i++) {
for(int j=0; j<=n; j++) {
whowin[i][j] = true;
}
if(!r[i]) {
whowin[i][0] = false;
bfs.push(make_pair(i,0));
}
}
while(!bfs.empty()) {
pair<int,int> next = bfs.front();
bfs.pop();
if(r[next.first] && next.second==n) {
for(int i: backward[next.first]) {
if(a[i]) {
int j=n;
deg[i][j]--;
if(deg[i][j]==0 && whowin[i][j]) {
whowin[i][j] = false;
bfs.push(make_pair(i,j));
}
} else {
int j=n;
if(whowin[i][j]) {
whowin[i][j] = false;
bfs.push(make_pair(i,j));
}
}
}
} else if (r[next.first]==0) {
for(int i: backward[next.first]) {
int j = (next.second==n ? n : next.second + 1);
if(a[i]) {
deg[i][j]--;
if(deg[i][j]==0 && whowin[i][j]) {
whowin[i][j] = false;
bfs.push(make_pair(i,j));
}
} else {
if(whowin[i][j]) {
whowin[i][j] = false;
bfs.push(make_pair(i,j));
}
}
}
}
}
vector<int> ans(n,0);
for(int i=0; i<n; i++) {
ans[i] = whowin[i][n];
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
train.cpp: In function 'void init(std::vector<int>&, std::vector<int>&)':
train.cpp:16:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<u.size(); i++) {
~^~~~~~~~~
# | 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... |