摘要:
``` struct point { double x,y; point(double x=0,double y=0):x(x),y(y) {} }g[1000000],yuan; typedef point vec; const double eps=1e-8; const double pi=acos(-1.0); bool cmp(point a,point b) { ... 阅读全文
摘要:
"D. Skills" 题意: 给出 n, A, cf, cm, m,表示有 n 个技能,每个技能当前水平为 a[i] ,最高水平为 A ,有 m 个技能点,花费一个技能点可以使任意一个技能水平加一 (最高只能是 A)。 如果最后水平为 A 的技能有 x 个,最低的技能水平值为 y,定义权值为 cf 阅读全文