This file contains hidden or 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> | |
#pragma GCC target("lzcnt,popcnt") | |
#pragma GCC optimize("O3,unroll-loops") | |
#define int long long | |
#define pii pair<int,int> | |
#define vi vector<int> | |
#define ff first | |
#define ss second | |
#define all(x) x.begin(),x.end() | |
#define sp << " " << |