摘要:
176. 第二高的薪水 (limit, order by, ifnull) limit的用法: limit y : 读取 y 条数据 limit x, y : 跳过 x 条数据,读取 y 条数据 limit y offset x : 跳过 x 条数据,读取 y 条数据 按照salary 从大到小排序 阅读全文
摘要:
``` #include using namespace std; typedef long long ll; const ll mod = 1e9+7; const int N = 1e6+5; int n; ll siz[N]; ll d[2][25][25],pow2[25],pow3[25]; void ycl(){ int o=0; pow2[0] = pow3[0] =... 阅读全文