math/get_monomials.hpp
- View this file on GitHub
- Last update: 2020-09-17 09:30:53+09:00
- Include:
#include "math/get_monomials.hpp"
Code
#pragma once
#include<vector>
#include<numeric>
// pws[i] = i^d (0 <= i < n)
template<typename T>
std::vector<T> get_monomials(long long d, int n) {
}
#line 2 "math/get_monomials.hpp"
#include<vector>
#include<numeric>
// pws[i] = i^d (0 <= i < n)
template<typename T>
std::vector<T> get_monomials(long long d, int n) {
}