#pragma once static inline int intmin(int x, int y) { return x < y ? x : y; } static inline int intmax(int x, int y) { return x > y ? x : y; }