摘要:
Time limit: 3.000 seconds限时:3.000秒Background背景Stacks and Queues are often considered the bread and butter of data structures and find use in architect... 阅读全文
2015年9月9日
2015年9月7日
摘要:
#include#include#includeusing namespace std;const int maxn = 15;int vis[maxn];int check(int n, int x){ memset(vis, 0, sizeof(vis)); int a, t; ... 阅读全文
2015年9月6日
摘要:
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 const int maxn = 10005; //如果是1005就会RE,当不确定时,最好取大点。 7 int A[maxn]; 8 #define LL u... 阅读全文