답안 #1073260

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1073260 2024-08-24T11:21:30 Z oscar1f 장난감 기차 (IOI17_train) C++17
11 / 100
5 ms 1628 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][2];
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][0]--;
				if (degSort[i][0]==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][1]--;
				if (degSort[i][1]==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++) {
		adjaTrans[v[i]].push_back(u[i]);
		if (u[i]!=v[i] or charg[i]==1) {
			degSort[u[i]][1]++;
		}
		degSort[u[i]][0]++;
	}
	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 2 ms 1116 KB 3rd lines differ - on the 14th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 0 ms 348 KB 3rd lines differ - on the 4th token, expected: '0', found: '1'
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 1628 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 4 ms 1400 KB Output is correct
3 Correct 4 ms 1372 KB Output is correct
4 Correct 4 ms 1388 KB Output is correct
5 Correct 4 ms 1372 KB Output is correct
6 Correct 4 ms 1372 KB Output is correct
7 Correct 4 ms 1372 KB Output is correct
8 Correct 4 ms 1364 KB Output is correct
9 Correct 5 ms 1372 KB Output is correct
10 Correct 4 ms 1368 KB Output is correct
11 Correct 5 ms 1372 KB Output is correct
12 Correct 5 ms 1460 KB Output is correct
13 Correct 5 ms 1472 KB Output is correct
14 Correct 4 ms 1424 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 1372 KB Output is correct
2 Correct 5 ms 1368 KB Output is correct
3 Correct 5 ms 1372 KB Output is correct
4 Correct 4 ms 1372 KB Output is correct
5 Correct 1 ms 604 KB Output is correct
6 Correct 3 ms 860 KB Output is correct
7 Correct 3 ms 1100 KB Output is correct
8 Incorrect 3 ms 1116 KB 3rd lines differ - on the 5th token, expected: '0', found: '1'
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 1116 KB 3rd lines differ - on the 14th token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -