Last active
September 30, 2020 20:03
-
-
Save kiprasmel/4cd8882a1c03aa471f1c93dd449ad66f to your computer and use it in GitHub Desktop.
curl kipras.org/main.cpp -LO
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
#pragma GCC optimize ("O3") | |
#pragma GCC target ("sse4") | |
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
typedef unsigned long long ull; | |
#define INF (1e9 + 7) | |
#if (0 || defined(DEBUG)) && !defined(EVAL) | |
#define LOG(x) std::cout << x << "\n" | |
#define LOGS(x) std::cout << x << " " | |
#define LO(x) std::cout << x | |
#define LOGA(x) for (const auto& y : x) { LOG(y); } | |
#define LOGSA(x) for (const auto& y : x) { LOGS(y); } | |
#define LOA(x) for (const auto& y : x) { LO(y); } | |
#else | |
#define LOG(x) | |
#define LOGS(x) | |
#define LO(x) | |
#define LOGA(x) | |
#define LOGSA(x) | |
#define LOA(x) | |
#endif | |
int main() { | |
ios::sync_with_stdio(0); | |
cin.tie(0); | |
// const char* __fin = "in"; freopen(__fin, "r", stdin); std::ifstream __input_file(__fin); assert(__input_file.good()); | |
// const char* __fout = "out"; freopen(__fout, "w", stdout); | |
return 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment