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. [ 转载 ] js十大排序算法:冒泡排序

    js十大排序算法:冒泡排序  http://www.cnblogs.com/beli/p/6297741.html

  2. 如何正确使用 Django的User Model

    阅读目录(Content) django——重写用户模型 1.修改配置文件,覆盖默认的User模型 2.引用User模型 3.指定自定义的用户模型 4.扩展Django默认的User 5.自定义用户与 ...

  3. mysql数据库外键删除更新规则

    1.CASCADE:从父表删除或更新且自动删除或更新子表中匹配的行. 2.SET NULL:从父表删除或更新行,并设置子表中的外键列为NULL.如果使用该选项,必须保证子表列没有指定NOT NULL. ...

  4. Python168的学习笔记1

    在对list的条件选择有两种常用方法,直接使用filter函数,就是filter(func,sequence);另外一种就是迭代操作,类似 x for x in sequence func.这两种方法 ...

  5. Mysql的学习随笔day2

    关于输入中文的问题,各种更改完utf8后仍然乱码. 最后找到一种可行的方法:在insert之前,输入 set names 'gbk' 约束保证数据的完整性和一致性.约束分为表级约束和列级约束,前者可以 ...

  6. Codeforces Round #350 (Div. 2) D1. Magic Powder - 1 二分

    D1. Magic Powder - 1 题目连接: http://www.codeforces.com/contest/670/problem/D1 Description This problem ...

  7. hihocoder1322希尔伯特曲线(163周)

    hihocoder1322 : 希尔伯特曲线(163周) 题目链接 思路: 看图,对每个Hn迭代到H(n-1) 直到迭代到1就ok,判断在哪个区间就好了.一定一定要注意数据的范围!! ac代码: // ...

  8. 所谓jQuery.append()、jQuery.html()存在的XSS漏洞

    使用jQuery.append().jQuery.html()方法时,如果其中内容包含<script>脚本而没有经过任何处理的话,会执行它. 简单的示例代码如下: var xssStr = ...

  9. CentOS 7 下编译安装lnmp之MySQL篇详解

    一.安装环境 宿主机=> win7,虚拟机 centos => 系统版本:centos-release-7-5.1804.el7.centos.x86_64 二.MySQL下载 MySQL ...

  10. sql prompt5安装好了,也破解完成了,然后到SQL里面还是没有提示是为什么?

    勾上这个,祝你成功!