# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
499731 | martarel | 슈퍼트리 잇기 (IOI20_supertrees) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include<algorithm>
#include <math.h>
#include <iostream>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pi;
typedef vector<bool> vb;
typedef vector<int> vi;
typedef vector<ll> vl;
const ll maxn = 2e5 + 100;
const ll INF = 1e9;
#define fast_io ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define pb push_back
#define pii pair<ll, pair<int, int>>
#define mp make_pair
#define f first
#define s second
#define all(x) (x).begin(), (x).end()
#define FOR(n) for(int i = 0; i < n; i++)
void build(int[][] b){
}
int construct(int[][] p){
n = (sizeof(p)/sizeof(*p));
int[n][n] ans;
//Case 1
for (int i = 1; i < n; i++){
ans[0][i] = 1;
ans[i][0] = 1;
}
build(ans);
return 1;
}