답안 #1073265

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1073265 2024-08-24T11:25:49 Z oscar1f 장난감 기차 (IOI17_train) C++17
0 / 100
5 ms 1372 KB
#include<bits/stdc++.h>
#include "train.h"
using namespace std;

const int MAX_SOM=5000+5;
int nbSom,nbAre;
vector<int> rep,possed,charg;
vector<int> adjaTrans[MAX_SOM];
int degSort[MAX_SOM];
int pb[MAX_SOM];

void DFS(int pos) {
	if (pb[pos]==0) {
		pb[pos]=1;
		for (int i:adjaTrans[pos]) {
			//cout<<"?"<<i<<endl;
			if (possed[i]==1) {
				DFS(i);
			}
			else {
				degSort[i]--;
				if (degSort[i]==0) {
					DFS(i);
				}
			}
		}
	}
}

void DFS2(int pos) {
	if (rep[pos]==1) {
		rep[pos]=0;
		for (int i:adjaTrans[pos]) {
			if (possed[i]==0) {
				DFS2(i);
			}
			else {
				degSort[i]--;
				if (degSort[i]==0) {
					DFS2(i);
				}
			}
		}
	}
}



vector<int> who_wins(vector<int> a,vector<int> r,vector<int> u,vector<int> v) {
	nbSom=a.size();
	nbAre=u.size();
	possed=a;
	charg=r;
	rep.resize(nbSom,1);
	for (int i=0;i<nbAre;i++) {
		if (u[i]!=v[i] or possed[i]==charg[i]) {
			adjaTrans[v[i]].push_back(u[i]);
			degSort[u[i]]++;
		}
	}
	for (int i=0;i<nbSom;i++) {
		if (charg[i]==1) {
			DFS(i);
		}
	}
	/*for (int i=0;i<nbSom;i++) {
		cout<<pb[i]<<" ";
	}
	cout<<endl;*/
	for (int i=0;i<nbSom;i++) {
		if (pb[i]==0) {
			DFS2(i);
		}
	}
	return rep;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 856 KB 3rd lines differ - on the 14th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Incorrect 0 ms 348 KB 3rd lines differ - on the 3rd token, expected: '0', found: '1'
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 1368 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 1116 KB Output is correct
2 Correct 5 ms 1112 KB Output is correct
3 Correct 5 ms 1064 KB Output is correct
4 Correct 5 ms 1116 KB Output is correct
5 Incorrect 5 ms 1140 KB 3rd lines differ - on the 33rd token, expected: '0', found: '1'
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 1260 KB Output is correct
2 Correct 5 ms 1372 KB Output is correct
3 Incorrect 5 ms 1112 KB 3rd lines differ - on the 4672nd token, expected: '0', found: '1'
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 856 KB 3rd lines differ - on the 14th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -