# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
960863 | 2024-04-11T06:52:10 Z | Trisanu_Das | Amusement Park (JOI17_amusement_park) | C++17 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "Joi.h" #define long long long using namespace std; const int N = 1e4+5; static int n, m; static long val; static vector<int> g[N]; static bool check[N]; static int ptr; static void dfs(int u) { MessageBoard(u, val >> (ptr++) & 1); ptr %= 60; check[u] = true; for(int v : g[u]) if(!check[v]) dfs(v); } void Joi(int N, int M, int A[], int B[], long X, int T) { n = N, m = M, val = X; for(int i = 0; i < m; ++i) { g[A[i]].emplace_back(B[i]); g[B[i]].emplace_back(A[i]); } dfs(0); }