diff --git a/codeforces/998/temp/.clang-format b/codeforces/998/temp/.clang-format deleted file mode 100644 index e7350c4..0000000 --- a/codeforces/998/temp/.clang-format +++ /dev/null @@ -1,9 +0,0 @@ -BasedOnStyle: Google -AllowShortBlocksOnASingleLine: false -AllowShortCaseLabelsOnASingleLine: false -AllowShortCompoundRequirementOnASingleLine: false -AllowShortEnumsOnASingleLine: false -AllowShortFunctionsOnASingleLine: false -AllowShortIfStatementsOnASingleLine: false -AllowShortLambdasOnASingleLine: false -AllowShortLoopsOnASingleLine: false diff --git a/codeforces/998/temp/.clangd b/codeforces/998/temp/.clangd deleted file mode 100644 index 61f8494..0000000 --- a/codeforces/998/temp/.clangd +++ /dev/null @@ -1,8 +0,0 @@ -CompileFlags: - Add: - - -std=c++20 - - -Wall - - -Wextra - - -Wpedantic - - -Wshadow - - -Wno-unknown-pragmas \ No newline at end of file diff --git a/codeforces/998/temp/a.cc b/codeforces/998/temp/a.cc deleted file mode 100644 index d121d55..0000000 --- a/codeforces/998/temp/a.cc +++ /dev/null @@ -1,88 +0,0 @@ -#include - -// https://codeforces.com/blog/entry/96344 - -#pragma GCC optimize("O2,unroll-loops") -#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") - -using namespace std; - -template -void dbg(std::string const &str, Args &&...args) { - std::cout << std::vformat(str, std::make_format_args(args...)); -} - -template -void dbg(T const &t) { - std::cout << t; -} - -template -void dbgln(T const &t) { - if constexpr (std::is_convertible_v) { - std::cout << t << '\n'; - } else { - for (auto const &e : t) { - std::cout << e << ' '; - } - std::cout << '\n'; - } -} - -void dbgln() { - std::cout << '\n'; -} - -template -void dbgln(std::string const &str, Args &&...args) { - dbg(str, std::forward(args)...); - cout << '\n'; -} - -template -void dbgln(T const &t) { - dbg(t); - cout << '\n'; -} - -template -constexpr T MIN = std::numeric_limits::min(); - -template -constexpr T MAX = std::numeric_limits::max(); - -template -static T sc(auto &&x) { - return static_cast(x); -} - -#define ff first -#define ss second -#define eb emplace_back -#define ll long long -#define ld long double -#define vec vector -#define endl '\n' - -#define all(x) (x).begin(), (x).end() -#define rall(x) (r).rbegin(), (x).rend() -#define sz(x) static_cast((x).size()) -#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a)) -#define ROF(a, b, c) for (int(a) = (b); (a) > (c); --(a)) - -void solve() { - dbgln("hi") -} - -int main() { - cin.tie(nullptr)->sync_with_stdio(false); - - int t = 1; - cin >> t; - - while (t--) { - solve(); - } - - return 0; -} diff --git a/codeforces/998/temp/a.in b/codeforces/998/temp/a.in deleted file mode 100644 index d00491f..0000000 --- a/codeforces/998/temp/a.in +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/codeforces/998/temp/a.out b/codeforces/998/temp/a.out deleted file mode 100644 index 2a210a0..0000000 --- a/codeforces/998/temp/a.out +++ /dev/null @@ -1,9 +0,0 @@ -a.cc: In function ‘void solve()’: -a.cc:74:14: error: expected ‘;’ before ‘}’ token - 74 | dbgln("hi") - | ^ - | ; - 75 | } - | ~ - -[code]: 1 \ No newline at end of file diff --git a/codeforces/998/temp/b.cc b/codeforces/998/temp/b.cc deleted file mode 100644 index dc08aac..0000000 --- a/codeforces/998/temp/b.cc +++ /dev/null @@ -1,74 +0,0 @@ -#include - -// https://codeforces.com/blog/entry/96344 - -#pragma GCC optimize("O2,unroll-loops") -#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") - -using namespace std; - -template void dbg(std::string const &str, Args &&...args) { - std::cout << std::vformat(str, std::make_format_args(args...)); -} - -template void dbg(T const &t) { std::cout << t; } - -template void dbgln(T const &t) { - if constexpr (std::is_convertible_v) { - std::cout << t << '\n'; - } else { - for (auto const &e : t) { - std::cout << e << ' '; - } - std::cout << '\n'; - } -} - -void dbgln() { std::cout << '\n'; } - -template void dbgln(std::string const &str, Args &&...args) { - dbg(str, std::forward(args)...); - cout << '\n'; -} - -template void dbgln(T const &t) { - dbg(t); - cout << '\n'; -} - -template constexpr T MIN = std::numeric_limits::min(); - -template constexpr T MAX = std::numeric_limits::max(); - -template static T sc(auto &&x) { return static_cast(x); } - -#define ff first -#define ss second -#define eb emplace_back -#define ll long long -#define ld long double -#define vec vector -#define endl '\n' - -#define all(x) (x).begin(), (x).end() -#define rall(x) (r).rbegin(), (x).rend() -#define sz(x) static_cast((x).size()) -#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a)) -#define ROF(a, b, c) for (int(a) = (b); (a) > (c); --(a)) - -void solve() { - -} - -int main() { - cin.tie(nullptr)->sync_with_stdio(false); - - int t = 1; - cin >> t; - - while (t--) { - solve(); - } - - return 0; -} diff --git a/codeforces/998/temp/b.in b/codeforces/998/temp/b.in deleted file mode 100644 index e69de29..0000000 diff --git a/codeforces/998/temp/b.out b/codeforces/998/temp/b.out deleted file mode 100644 index e69de29..0000000 diff --git a/codeforces/998/temp/compile_flags.txt b/codeforces/998/temp/compile_flags.txt deleted file mode 100644 index b5d4b68..0000000 --- a/codeforces/998/temp/compile_flags.txt +++ /dev/null @@ -1,5 +0,0 @@ --std=c++20 --Wall --Wextra --Wpedantic --Wshadow