Submission #283812

# Submission time Handle Problem Language Result Execution time Memory
283812 2020-08-26T07:33:59 Z mohammad Toy Train (IOI17_train) C++14
0 / 100
8 ms 1024 KB
#include "train.h"
#include<bits/stdc++.h>
using namespace std;
 
#define endl "\n"
// #define int long long

typedef long long ll ;
const ll ooo = 1e14 ;
const ll oo = 2e9 ;
const double PI = acos(-1) ;
const ll M = 1e9 + 7  ;
const int N = 10000010  ;

vector<int> g[5010] , w , R;

int dfs(int i){
	if(w[i] != -1)  return w[i];
	for(auto x : g[i])
		w[i] = dfs(x);
	if(w[i] == -1) w[i] = R[i];
	return w[i] ;
}


vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
	int n = a.size() , m = u.size();
	w = vector<int>(n , 1);
	// R = r;
	// for(int i = 0 ; i < m ; ++i){
	// 	int x = u[i] , y = v[i];
	// 	if(x == y && a[x] == 1 && r[x] == 1) w[x] = 1;
	// 	if(x == y && a[x] == 0 && r[x] == 0) w[x] = 0;
	// 	else if(x != y) g[x].push_back(y);
	// }
	// for(int i = 0 ; i < n ; ++i){
	// 	if(w[i] != -1) continue ;
	// 	dfs(i);
	// }
	return w;
}

Compilation message

train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:27:21: warning: unused variable 'm' [-Wunused-variable]
   27 |  int n = a.size() , m = u.size();
      |                     ^
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 768 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 896 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 896 KB 3rd lines differ - on the 696th token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 1024 KB 3rd lines differ - on the 2nd token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 768 KB 3rd lines differ - on the 1st token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -