cplib-cpp

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub hitonanode/cplib-cpp

:warning: random/shuffle_container.hpp

Code

#pragma once
#include <algorithm>
#include <chrono>
#include <random>

// CUT begin
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
// std::shuffle(v.begin(), v.end(), rng);
#line 2 "random/shuffle_container.hpp"
#include <algorithm>
#include <chrono>
#include <random>

// CUT begin
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
// std::shuffle(v.begin(), v.end(), rng);
Back to top page