답안 #605500

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
605500 2022-07-25T18:24:48 Z AugustinasJucas 게임 (APIO22_game) C++17
0 / 100
1 ms 208 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int dydis = 1001;
bitset<dydis> can[dydis];
int n, k;
void init(int N, int K) {
    n = N; k = K;
    for(int i = 0 ; i < n; i++) can[i][i] = 1;
    for(int i = 0; i < k-1; i++) {
        for(int j = i; j < k; j++) {
            can[i][j] = true;
        }
    }
}

int add_teleporter(int u, int v) {
    for(int i = 0; i < n; i++) {
        if(!can[i][u]) continue;
        can[i] |= can[v];
    }
  /*  cout << "kai pridejau " << u << " -> " << v << ":\n";
    for(int i = 0; i < n; i++) {
        cout << i << " gali i: ";
        for(int j = 0; j < n; j++) {
            if(can[i][j]) cout << j << ", ";
        }
        cout << endl;
    }*/
    if(u == v) return 0;
    for(int i = 0; i < k; i++) {
        if(can[i][u] && can[u][i]) return 1;
        if(can[i][v] && can[v][i]) return 1;
    }
    return 0;
}
/*
6 5 3
3 4
5 0
4 5
5 3
1 4
*/
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Wrong Answer[1]
2 Halted 0 ms 0 KB -