24 lines
372 B
C++
24 lines
372 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
#include <vector>
|
|
#include <queue>
|
|
|
|
#define let auto
|
|
#define fn auto
|
|
using namespace std;
|
|
|
|
typedef size_t usize;
|
|
typedef ssize_t isize;
|
|
typedef int32_t i32;
|
|
typedef u_int32_t u32;
|
|
typedef int64_t i64;
|
|
typedef u_int64_t u64;
|
|
|
|
fn fastio() {
|
|
ios::sync_with_stdio(false);
|
|
cin.tie(nullptr);
|
|
}
|
|
|
|
fn main() -> int {
|
|
fastio();
|
|
} |