improve cpp tempalte
This commit is contained in:
@@ -1,17 +1,24 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <queue>
|
||||||
|
|
||||||
#define let auto
|
#define let auto
|
||||||
#define fn auto
|
#define fn auto
|
||||||
#define usize size_t
|
|
||||||
using namespace std;
|
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() {
|
fn fastio() {
|
||||||
ios::sync_with_stdio(false);
|
ios::sync_with_stdio(false);
|
||||||
cin.tie(nullptr);
|
cin.tie(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() -> int {
|
fn main() -> int {
|
||||||
|
fastio();
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user