# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1079204 | 2024-08-28T12:00:06 Z | hirayuu_oj | 게임 (IOI13_game) | C++17 | 0 ms | 0 KB |
#include "game.h" #include<bits/stdc++.h> using namespace std; vector<int> cnt; void initialize(int n){ cnt.resize(n,n-1); } int hasEdge(int u, int v){ cnt[u]--;cnt[v]--; if(cnt[u]==0||cnt[v]==0)return 1; else return 0; }