摘要:
SELECT date_num/12 [year], date_num%12+1 [month], num FROM( SELECT YEAR(register_date)*12+MONTH(register_date)-1 date_num,count(*) num FROM [user] GRO 阅读全文
摘要:
瞎写个数独生成器,可选择难度 #include <bits/stdc++.h> using namespace std ; int orign_map[10][10],ans_map[10][10]; int ans_cnt ; int pos_x[100],pos_y[100]; bool buc 阅读全文
摘要:
#encding:GBK require 'tk' module Const WIDTH_OF_PANEL = 370 HEIGHT_OF_PANEL = 520 SIZE_OF_BUTTON_H = 60 SIZE_OF_BUTTON_W = 80 HEIGHT_OF_DISPLAY_FRAME = 90 HEIGHT_OF_VALUE_LABEL = 30 HE... 阅读全文
摘要:
#include <iostream> #include <algorithm> #include <cstdio> #include <cstring> using namespace std ; const int maxNode = 400500 ; struct tireTree { int 阅读全文
摘要:
Tire树裸题,一开始写动态的字典树,然后TLE,每次new一个新节点耗费时间较多。后来改成数组模拟的。 //#include <bits/stdc++.h> #include <cstdio> #include <cstring> #include <algorithm> using namesp 阅读全文
摘要:
A(HDU6124) #include <bits/stdc++.h> using namespace std ; int INPUT ( ) { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getc 阅读全文
摘要:
1 #include <bits/stdc++.h> using namespace std ; struct bigInt { int num[ 2000 ] ; int size ; static const int maxN = 2000 ; private : void Init ( ) { 阅读全文
摘要:
开始存模板 快速排序 #include <cstdio> #include <algorithm> #include <iostream> using namespace std ; typedef long long ll ; const int maxN = 100010 ; int a[ ma 阅读全文
摘要:
2048: [2009国家集训队]书堆 Time Limit: 10 Sec Memory Limit: 259 MBSubmit: 1076 Solved: 499[Submit][Status][Discuss] Description Input 第一行正整数 N M Output 一行(有换 阅读全文