ac-library
フォルダ, そしてその中にatcoder
フォルダが入っているはずです。atcoder
フォルダをmain.cpp
と同じ場所に置いて、g++ main.cpp -std=c++14 -I .
でコンパイルできます。 -std=c++14
か-std=c++17
をつけてコンパイルする必要があります。unsigned int
→ uint
long long
→ ll
unsigned long long
→ ull
#include <atcoder/all>
: 一括include
#include <atcoder/fenwicktree>
#include <atcoder/segtree>
#include <atcoder/lazysegtree>
#include <atcoder/string>
#include <atcoder/dsu>
#include <atcoder/maxflow>
#include <atcoder/mincostflow>
#include <atcoder/scc>
#include <atcoder/twosat>
ヘッダファイル群(同梱の atcoder
フォルダ以下)はCC0ライセンスで公開しています。詳しくはatcoder/LICENSE
を参照してください。