幸福鸭子

文章
5
资源
1
加入时间
2年10月17天

D. Martial Arts Tournament

#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 10;int a[N], c[N];int n;int calc (int tar) { int j = 0; while((1 << j) < tar) j ++; return (1 << j) - tar;} int get (int x, int y) { retur

MySQL记录

# 查询表在哪个数据库SELECT table_schema FROM information_schema.TABLES WHERE table_name = 'push_app';# mysql中查询一个字段具体是属于哪一个数据库的那一张表:用这条语句就能查询出来,其中 table_schema 是所在库, table_name 是所在表SELECT table_schema, ...