文字列と配列操作に関するアルゴリズム解析

コードのマクロ定義とフレームワークの約束 #include <bits/stdc++.h> using namespace std; #define FASTIO ios::sync_with_stdio(false); cin.tie(nullptr); #define ENDL '\n' #define RANGE(_x, _y) (_x).begin(), (_x).end() #define LOOP(_i, _s, _e) for (int _i = _s; _i < _e; ++_i) typedef long long ll; const int MAXN = 200010; signed main() { ...

8月2日 05:41 投稿