Submission #150234

# Submission time Handle Problem Language Result Execution time Memory
150234 2019-09-01T07:56:58 Z 갓띵건(#3694, gs18103, sjimed, gs18065) Bulb Game (FXCUP4_bulb) C++17
0 / 100
2 ms 376 KB
#include "bulb.h"
#include <bits/stdc++.h>
using namespace std;

#define fast ios::sync_with_stdio(false);cin.tie(0)
#define fi first
#define se second
#define eb emplace_back
#define pb push_back
#define all(v) (v).begin(), (v).end()
#define pre(a) cout<<fixed;cout.precision(a)

typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll, ll> pll;
const int inf = 1e9;
const ll INF = 1e18;

int n;
vector<int> l, r;

int dfs(int x) {
	if(x < 0) return x;
	return dfs(l[x]);
}

int FindWinner(int T, std::vector<int> L, std::vector<int> R){
	n = L.size();
	l = L;
	r = R;

	bool flag = true;
	for(int j=0; j>=0; j = l[j]) {
		if(l[j] == -2&&dfs(r[j]) == -2) flag = false;
	}
	if(flag) return 1;

	for(int i=0; i<n; i++) {
		swap(l[i], r[i]);

		flag = true;
		for(int j=0; j>=0; j = l[j]) {
			if(l[j] == -2&&dfs(r[j]) == -2) flag = false;
		}

		swap(l[i], r[i]);

		if(flag) return 1;
	}

	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB Output is correct
2 Incorrect 2 ms 256 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 256 KB Output is correct
2 Incorrect 2 ms 256 KB Output isn't correct