fix: add cmath & algorithm header to mo.cpp

This commit is contained in:
realstealthninja
2024-10-01 22:09:27 +05:30
parent 8d260bf328
commit 01cb061fe2

View File

@@ -1,4 +1,7 @@
#include <algorithm>
#include <cmath>
#include <iostream>
using namespace std;
const int N = 1e6 + 5;
int a[N], bucket[N], cnt[N];