Created
May 7, 2024 08:13
-
-
Save clucle/8ec93df246d7d2efd627889b7925d1e1 to your computer and use it in GitHub Desktop.
algorithm-skel
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
#define _CRT_SECURE_NO_DEPRECATE | |
#include <iostream> | |
#include <cstdio> | |
#include <cstdlib> | |
#include <climits> | |
#include <cmath> | |
#include <set> | |
#include <map> | |
#include <vector> | |
#include <string> | |
#include <cmath> | |
#include <cstring> | |
#include <queue> | |
#include <stack> | |
#include <algorithm> | |
#include <sstream> | |
#include <numeric> | |
#include <unordered_map> | |
#include <cassert> | |
#include <fstream> | |
#include <functional> | |
using namespace std; | |
#define For( i, j, k ) for ( int i = (int)( j ); i <= ( k ); i++ ) | |
#define For2( i, j, k ) for ( int i = (int)( j ); i < ( k ); i++ ) | |
using ll = long long; | |
using pii = pair<int, int>; | |
using pll = pair<ll, ll>; | |
const bool TEST_CASES = false; | |
const bool READ_FILE = false; | |
constexpr bool DEBUG = false; | |
inline void read() | |
{ | |
} | |
inline void solve() | |
{ | |
} | |
int main() | |
{ | |
ios::sync_with_stdio(false); | |
cin.tie(0); | |
cout.tie(0); | |
cout.precision(8); | |
cout << fixed; | |
int t = 1; | |
if (READ_FILE) | |
freopen("D:\\test.txt", "r", stdin); | |
if (TEST_CASES) | |
cin >> t; | |
while (t--) | |
{ | |
read(); | |
solve(); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment