#include <iostream>
#include <vector>
#include <queue>
#include <set>
#include <iomanip>
#include <string>
using i64 = long long;
constexpr int dirs[][2] = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};
int main() {
stdiossync_with_stdio(false);
std::cin.tie(nullptr);
}