#include <iostream> #include <vector> #include <cmath> #include <algorithm> using namespace std; #define IOS ios::sync_with_stdio(0), cin.tie(0), cout.tie(0) #define int long long int test(int in) { int out = ceil(double(in) / 3.0); return out; } signed main() { IOS; int n; c...