1316专题

HDU 1316(大数比较+二分)

大数比较+二分: #include<algorithm>#include<stdio.h>#include<string>#include<string.h>#include<math.h>#include<queue>#include<iostream>using namespace std;#define M 105char a[M+2],b[M+2];char book

HDU 1316 大数二分

建素数表  二分查找  练手用了。。 #include "stdio.h"#include "string.h"int f[5010][1010];int pk(int a[],int b[]){int i;if (a[0]>b[0]) return 1;if (a[0]<b[0]) return -1;for (i=a[0];i>=1;i--){if (a[i]>b[i]) retu

1316 三整数排序

1316: 三整数排序 1.描述 从键盘输入三个整数x,y和z,按从大到小的顺序输出它们的值。 输入 输入三个整数x,y和z。 输出 按从大到小的顺序输出它们的值。 样例输入 20 16 18 样例输出 20 18 16 2.代码 #include<math.h> int main() { int a,b,c,max,min,zj; scanf("%d %d %d",&a,&b,&c

NEFU 1316 Ela的回文串(manacher)

Ela的回文串 Problem:1316 Time Limit:1000ms Memory Limit:65535K Description Ela在算法课上学习了回文串,但是她不想在回文串中出现她不喜欢的字符。现在Ela告诉我们她喜欢的字符是{A, H, I, M, O, T, U, V, W, X, Y} 她想知道对于某个字符串中只包

1316:【例4.6】数的计数(Noip2001)

通过代码: #include <bits/stdc++.h>#define LL long longusing namespace std;LL n, F[1001];LL f(LL _n) {if(F[_n] != 0) return F[_n];else if(_n == 1) return 1;LL sum = 1;for(LL i = 1; i <= _n / 2; i ++)