1. POJ 3299 Humidex

链接: http://poj.org/problem?id=3299

这道题是已知H,D,T三者的运算关系,然后告诉你其中两个。求另一个。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
int main ()
{
char c,h;
double T,D,H;
while(cin>>c)
{
T=D=H=1000;
if (c=='E') break;
if (c=='T') cin>>T;
else if (c=='D') cin>>D;
else cin>>H;//用这种方式输入比较方便
cin>>h;
if (h=='T') cin>>T;
else if (h=='D') cin>>D;
else cin>>H;
if (H==1000)
{
H=T+0.5555*(6.11*exp (5417.7530 * ((1/273.16) - (1/(D+273.16))))-10.0);//exp(t) 表示e的t次
}
if (D==1000)
{
D=1/(1/273.16-log(((H-T)/0.5555+10.0)/6.11)/5417.7530)-273.16;//log(t) 实际上是lnt
}
if (T=1000)
T=H-0.5555*(6.11*exp (5417.7530 * ((1/273.16) - (1/(D+273.16))))-10.0);
printf("T %.1f D %.1f H %.1f\n",T,D,H);//G++上面用.f才AC。
}
return 0;
}

2. POJ 2159 Ancient Cipher

链接:  http://poj.org/problem?id=2159

这道题大致是一串密码,经过字母置换和乱序排序之后得到新的一串加密字符串。然后给出一串加密的和一串专家推测出来的密码。问是否为同一个

这道题其实并不能得到确切的,因为乱序的顺序并没有告诉我们,所以只要判断每个字符出现的次数是否相同即可。

这道题一开始做的时候被坑了,以为重置的就是简单向右移动一位。。

//这道题坑爹之处在于密码置换的时候并不是简单的向左加1.。 而是可以任意替换
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int map[30],b[30];
int main ()
{
int i;
char eng[105];
char str[105];
cin>>eng>>str;
for (i=0; i<strlen(eng); i++)
map[eng[i]-'A']++;
for (i=0; i<strlen(str); i++)
b[str[i]-'A']++;
sort(map,map+26);
sort(b,b+26);
int flag=1;
for (i=0; i<26; i++)
if (map[i]!=b[i])
flag=0;
if (flag) cout<<"YES"<<endl;
else cout<<"NO"<<endl;
return 0;
}

3. POJ 2739 sum of consecutive Primer Numbers

链接: http://poj.org/problem?id=2739

这道题的题意是将一个数表示成任意个相邻的素数之和,问能有多少组。

其实这道题用筛选法筛选出素数表之后,简单枚举就好了

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int prime[10010];
int a[10010];
int main ()
{
int n,i,j,t=0;
for (i=2; i<10000; i++)
if (!prime[i])
{
a[t++]=i;
for (j=2*i; j<10000; j+=i)
prime[j]=1;
}
while(cin>>n)
{
int p=0,s=0;
if (n==0) break;
for (i=0; i<t; i++)
{
s=0;
if (a[i]>n) break;
j=i;
while(s<n)
{
s+=a[j];
j++;
}
if (s==n) p++;
s=0;
}
cout<<p<<endl;
}
return 0;
}

4. POJ  2262 Goldbach's Conjecture

链接:  http://poj.org/problem?id=2262

哥德巴赫猜想的一个应用吧 将一个数拆分成两个素数之和(均大于2) 要求是两者之间的差最大

筛选法求素数

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
int a[1000005];
int main ()
{
int i,j,n,t=0;
for (i=2; i<1000000; i++)
if (!a[i])
for (j=2*i; j<1000000; j+=i)
a[j]=1;
while(cin>>n)
{
int b=0;
if (n==0) break;
for (i=3; i<=n/2; i++)//<=..一开始没有注意到 w了。因为6=3+3
if (!a[i] && !a[n-i])
{
b=1;
break;
}
if (b) printf("%d = %d + %d\n",n,i,n-i);
else printf("Goldbach's conjecture is wrong.\n");
}
return 0;
}

POJ 1503 Integer Inquiry

链接: http://poj.org/problem?id=1503

高精度运算之大数加法

要注意前导0的问题。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<ctype.h>
#include<algorithm>
using namespace std;
char num[150][150];
int sum[150]={0};
int main ()
{
int t=0,i,j,max=0;
memset(num,0,sizeof(num));
memset(sum,0,sizeof(sum));
while(gets(num[t]))
{
if (num[t][0]=='0' && strlen(num[t])==1 ) break;
int len=strlen(num[t]);
if (max<len) max=len;
for (i=0, j=len-1; i<j; i++, j--)
{
char temp;
temp=num[t][i];
num[t][i]=num[t][j];
num[t][j]=temp;
}
t++;
}
for (j=0; j<=max; j++)
{
for (i=0; i<t; i++)
if (isdigit(num[i][j]))
sum[j]+=num[i][j]-'0';
if (sum[j]>=10)
{
sum[j+1]+=sum[j]/10;
sum[j]=sum[j]%10;
}
}
while(sum[j]==0)
j--;
for (i=j; i>=0; i--)
cout<<sum[i];
cout<<endl;
return 0;
}

POJ 3006 Dirichlet's Theorem on Arithmetic Progressions

狄利克雷定理

链接: http://poj.org/problem?id=3006

a,b互质,在等差序列a,a+b,a+2b,a+3b……当中有很多个素数。。 给出a,b,n。求出等差数列当中第n个素数。

#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int is[1000000];
int main ()
{
is[0]=is[1]=1;
int i,j,a,b,n;
for (i=2; i<1000000; i++)
if (!is[i])
for (j=2*i; j<1000000; j+=i)
is[j]=1;
while(cin>>a>>b>>n)
{
if (a==0) break;
a-=b;
while(n)
{
a+=b;
if (!is[a]) n--;
}
cout<<a<<endl;
}
return 0;
}

POJ 3094 Quicksum

http://poj.org/problem?id=3094

A=1,B=2,……,Z=26,空格=0. 求出一串字符串的值

例如 ACM:=1*1+2*3+3*13=46

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
using namespace std;
int main ()
{
char str[260];
while(gets(str))
{
int sum=0,i,len=strlen(str);
if (str[0]=='#') break;
for (i=0; i<len; i++)
if (str[i]!=' ')
sum+=(str[i]-'A'+1)*(i+1);
cout<<sum<<endl;
}
return 0;
}

POJ 2255 Tree Recovery

链接: http://poj.org/problem?id=2255

这道题是二叉树重建的裸题

给你二叉树的前序和中序遍历。让你求出后序遍历。

注意递归的利用

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
void build(char *in, char *pre, char *post, int n)
{
int i=0;
if (n<=0) return;
while(*(in+i)!=*(pre)) i++;
build(in,pre+1,post,i);
build(in+i+1,pre+i+1,post+i,n-i-1);
post[n-1]=*pre;
}
int main ()
{
char in[30],pre[30],post[30];
while(cin>>pre>>in)
{
int n;
memset(post,0,sizeof(post));
n=strlen(in);
build(in,pre,post,n);
cout<<post<<endl;
}
return 0;
}

每日一水 POJ8道水题的更多相关文章

  1. 【转】POJ百道水题列表

    以下是poj百道水题,新手可以考虑从这里刷起 搜索1002 Fire Net1004 Anagrams by Stack1005 Jugs1008 Gnome Tetravex1091 Knight ...

  2. 1503171912-ny-一道水题

    一道水题 时间限制:1000 ms  |  内存限制:65535 KB 难度:2 描写叙述 今天LZQ在玩一种小游戏,可是这游戏数有一点点的大,他一个人玩的累.想多拉一些人进来帮帮他.你能写一个程序帮 ...

  3. ZOJ3778--一道水题

    Description As we all know, Coach Gao is a talented chef, because he is able to cook M dishes in the ...

  4. Co-prime Array&&Seating On Bus(两道水题)

     Co-prime Array Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Su ...

  5. 菜鸟带你飞______DP基础26道水题

    DP 158:11:22 1205:00:00   Overview Problem Status Rank (56) Discuss Current Time: 2015-11-26 19:11:2 ...

  6. 2014年西安区域赛的几道水题(A. F. K)

    A . 问一组数能否全部被3整除 K. S1 = A, S2 = B, Si = |Si-1  -  Si-2|; 一直循环问, 出现了多少不同的数: 多模拟几组数, 可以发现和辗转相除法有很大关系 ...

  7. Wow! Such Doge! HDU - 4847(虽然是道水题 但很有必要记一下)

    就是求出现了多少次doge 不区分大小写  巧用字符串函数 isalpha 判断是否是字母 tolower 转换为小写字母 toupper 转换为大写字母 strncmp字符串比较函数  能限制比较的 ...

  8. 来几道水题 d050: 妳那裡現在幾點了?

    减去15即可(注意这个数小于15的情况) 题目:珊珊到了美国犹他州的杨百翰大学之后,文文禁不住对她的思念,常常想打电话给她,却又担心在美国的她是不是在睡觉.好不容易鼓起勇气打通了电话,第一句就先问:「 ...

  9. codeforcess水题100道

    之所以在codeforces上找这100道水题的原因是为了巩固我对最近学的编程语言的掌握程度. 找的方式在codeforces上的PROBLEMSET中过的题最多的那些题里面出现的最前面的10个题型, ...

随机推荐

  1. web项目使用配置web.xml实现重定向

    1.实现方式 使用servlet和servlet-mapping实现重定向 <!-- vip登录页面做特殊处理 --> <servlet> <servlet-name&g ...

  2. 面向对象设计原则 依赖倒置原则(Dependency Inversion Principle)

    依赖倒置原则(Dependence Inversion Principle)是程序要依赖于抽象接口,不要依赖于具体实现. 简单的说就是要求对抽象进行编程,不要对实现进行编程,这样就降低了客户与实现模块 ...

  3. PHP中var_export和var_dump的区别

    var_dump -- 此函数显示关于一个或多个表达式的结构信息,包括表达式的类型与值. var_export -- 输出或返回一个变量的字符串表示, 它和 var_dump() 类似,不同的是其返回 ...

  4. POJ 3678 Katu Puzzle 2-SAT 强连通分量 tarjan

    http://poj.org/problem?id=3678 给m条连接两个点的边,每条边有一个权值0或1,有一个运算方式and.or或xor,要求和这条边相连的两个点经过边上的运算后的结果是边的权值 ...

  5. java后台接收json数据,报错com.alibaba.fastjson.JSONObject cannot be cast to xxx

    从前台接收json封装的list数据,在后台接收时一直报错,com.alibaba.fastjson.JSONObject cannot be cast to xxx, 使用这种方式接收可以接收 @R ...

  6. Codeforces Round #298 (Div. 2) D. Handshakes 构造

    D. Handshakes Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/534/problem ...

  7. Codeforces Round #293 (Div. 2) A. Vitaly and Strings

    A. Vitaly and Strings time limit per test 1 second memory limit per test 256 megabytes input standar ...

  8. 如何在java中跳出当前多重嵌套循环?有几种方法?

    如何在java中跳出当前多重嵌套循环?有几种方法? - 两种方法   - 1.在外层循环定义标记          ok:          for(int i=0;i<100;i++){    ...

  9. spring---aop(5)---Spring AOP的配置的背后的配置

    写在前面 Spring AOP中Pointcut,dvice 和 Advisor三个概念 1)切入点 Pointcut 在介绍Pointcut之前,有必要先介绍 Join Point(连接点)概念. ...

  10. Android Path Time ScrollBar(Path 时间轴)

    版本号:1.0 日期:2014.4.22 版权:© 2014 kince 转载注明出处   这是仿Path2.0UI的一个demo的截图,我最早是在农民伯伯的这篇博客中看到的[Andorid X 项目 ...