题意:模拟题,用字母模拟数字,没有数字代表的则跳过,有数则代表但是连续多组的只输出一个。具体代码:#include#include#includeusing
namespace std;int zimu[26]={0,1,2,3,0,1,2,0,0,2,2,4,5,5,0,1,2,6,2,3,0,1...
分类:
其他好文 时间:
2014-05-19 19:55:40
阅读次数:
164
题意:贪心,排序后大数与小数相加具体代码:#include #include #include
#include #include using namespace std;#define maxn 100005int n, m;int
f[maxn];int cmp(int a, int b){ ....
分类:
其他好文 时间:
2014-05-19 19:42:31
阅读次数:
233
http://acm.hdu.edu.cn/showproblem.php?pid=3038
1 #include 2 #include 3 #include 4 #define maxn 600000 5 using namespace std; 6
7 int f[maxn],d[max...
分类:
其他好文 时间:
2014-05-19 18:51:33
阅读次数:
252
//#define LOCAL#include#includeusing namespace
std;int const MAX_N=100001;int const INF=10000000;int N,M,x[MAX_N];void init(){
for(int i=0;i1) {...
分类:
其他好文 时间:
2014-05-19 17:20:45
阅读次数:
204
题目链接题意 : 中文题不详述。思路 : 中国剩余定理。求中国剩余定理中解的个数。看这里看这里
1 //1573 2 #include 3 #include 4 #include 5 6 using namespace std ; 7 8 long
long x,y ; 9 long lo...
分类:
其他好文 时间:
2014-05-19 16:48:21
阅读次数:
207
#includeusing namespace std;//大根堆,从小到达排序int
a[101];void swap(int &a,int &b){ a=a^b; b=a^b; a=a^b; }void adjust(int
*a,int root,int len){ int max=root;...
分类:
其他好文 时间:
2014-05-19 15:13:43
阅读次数:
219
1 #include 2 #include 3 using namespace std; 4 5
void modifyArray(int [], int); 6 void modifyElement(int); 7 8 int main() 9 {10
const int arr...
分类:
其他好文 时间:
2014-05-19 15:12:27
阅读次数:
257
>_____ 2 #include "TicTac.h" 3 #include 4
#include 5 #include 6 using namespace std; 7 CMyApp myApp; 8 /*ofstream
Cout("out.txt"); 9 void CM...
分类:
其他好文 时间:
2014-05-19 14:34:51
阅读次数:
430
http://space.itpub.net/14466241/viewspace-624132示例代码如下:namespace
SampleListT{ class Program { static void Main(string[] args) { //using System...
分类:
其他好文 时间:
2014-05-19 13:28:56
阅读次数:
233
单链表的C语言描述基本运算的算法——置空表、求表的长度、取结点、定位运算、插入运算、删除运算、建立不带头结点的单链表(头插入法建表)、建立带头结点的单链表(尾插入法建表),输出带头结点的单链表#include#includeusing
namespace std;template class Lin...
分类:
编程语言 时间:
2014-05-19 11:55:01
阅读次数:
541