|
9 | 9 | * @author [Pratyush Vatsa](https://github.com/Pratyush219) |
10 | 10 | */ |
11 | 11 |
|
12 | | -#include <algorithm> /// for sorting |
13 | | -#include <cassert> /// for assert |
14 | | -#include <cstdint> /// for integral typedefs |
15 | | -#include <cstdlib> /// random number generation |
16 | | -#include <ctime> /// for time |
17 | | -#include <iomanip> /// for formatting the output |
18 | | -#include <iostream> /// for IO operations |
19 | | -#include <queue> /// for std::priority_queue |
20 | | -#include <unordered_set> /// for std::unordered_set |
21 | | -#include <vector> /// for std::vector |
| 12 | +#include <algorithm> // for sort |
| 13 | +#include <cassert> // for assert |
| 14 | +#include <cstdint> // for uint32_t |
| 15 | +#include <cstdlib> // for rand, srand, size_t |
| 16 | +#include <ctime> // for time |
| 17 | +#include <iomanip> // for setw, operator<<, _Setw, setprecision, _Set... |
| 18 | +#include <iostream> // for basic_ostream, char_traits, operator<<, left |
| 19 | +#include <queue> // for priority_queue |
| 20 | +#include <unordered_set> // for unordered_set, operator== |
| 21 | +#include <vector> // for vector, operator==, allocator |
| 22 | +#include <tuple> // for tuple, get, make_tuple, operator==, swap |
22 | 23 |
|
23 | 24 | using std::cin; |
24 | 25 | using std::cout; |
|
0 commit comments