romophic-Library

Library for Competitive Programming

元々はgithub.com/romophic/Comproにまとめていたライブラリを適当にまとめたものです. 盆栽を勧められたので始めました.
前提テンプレート:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define int long long
#define double long double
#define uint unsigned long long
#define int128 __int128
#define uint128 unsigned __int128
using namespace std;
constexpr int INF = 1LL << 60;
template <class T>
bool chmax(T &a, const T &b) { return a < b ? a = b, 1 : 0; }
template <class T>
bool chmin(T &a, const T &b) { return a > b ? a = b, 1 : 0; }

アルゴリズム

グラフ

データ構造

数学

文字列

その他

ヒューリスティック

お世話になったライブラリ

自由に使って良いとあるところからのみ参考にさせて頂いて実装しました.  $ \mathit{thank\ you…} $

Licensed under CC BY-NC-ND 4.0
All rights reserved.
Built with Hugo
Theme Stack is designed by Jimmy