摘要: #include <cstdio> int Abs(int x) { return x < 0 ? -x : x; } int Max(int x, int y) { return x > y ? x : y; } int Min(int x, int y) { return x < y ? x : 阅读全文
posted @ 2021-10-18 15:58 STrAduts 阅读(54) 评论(0) 推荐(0)
摘要: ```cpp #include using namespace std; typedef double Doub; typedef long long LL; typedef pair PII; // template inline Tem Abs (Tem x) { return x inline 阅读全文
posted @ 2021-10-18 15:42 STrAduts 阅读(52) 评论(0) 推荐(0)