Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
/* clang-format off */ | |
/* TYPES */ | |
#define ll long long | |
#define pii pair<int, int> | |
#define pll pair<long long, long long> | |
#define vi vector<int> |