# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1159488 | akamizane | Election (BOI18_election) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
#ifndef LOCAL
#include<debug.hpp>
#else
#define debug(...) 40
#define debugArr(...) 238
#endif
using ll = long long;
using pii = pair<long long, long long>;
using db = long double;
// #define int long long
#define fi first
#define se second
#define pb push_back
#define all(x) x.begin(), x.end()
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define FOD(i, a, b) for (int i = (a); i >= (b); i--)
#define REP(i, n) for (int i = 0; i < (n); i++)
template <class T1, class T2>bool chmax(T1 &a, T2 b){return a < b ? a = b, 1 : 0;}
template <class T1, class T2>bool chmin(T1 &a, T2 b){return a > b ? a = b, 1 : 0;}
const int maxn = 2e5 + 5;
const int mod = 1e9 + 7;
const ll inf = 1e18;