今天 Patrick 等待着他的朋友 Spongebob 来他家玩。为了迎接 Spongebob,Patrick 需要去他家附近的两家商店 买一些吃的。他家离第一家商店有d1米远,离第二家商店有d2米远。还有,两家商店之间的距离是d3,帮Patrick计算去两家商店然后回家的最短距离。
Patrick 永远从他家出发,他不介意重复经过同一个地点或者同一条路,唯一的目标就是:最小化经过两间商店然后回家的距离。
Input第一行的输入包括三个整数 d1, d2, d3 (1 ≤ d1, d2, d3 ≤ 108)
输出经过两家商店然后回家的最短距离。
Sample Input60 4Hint
第一个样例是先经过第一间,再经过第二间,再回家
#include
#include
#include
typedef long long ll;
using namespace std;
ll d1,d2,d3,ans;
int main()
{
while(cin >> d1 >> d2 >> d3)
{
ans=min(2*(d1+d2),d1+d2+d3);
ans=min(ans,2*(d1+d3));
ans=min(ans,2*(d2+d3));
cout << ans << endl;
}
return 0;
}
Pasha有一根长度为n的大棒, 他想切三刀从而获得四根小棒。每一根小棒的长度必须是正数且加起来的和为n。
Pasha喜欢矩形但是不喜欢正方形,所以他想,有多少种切法能让切出来的四根小棒通过端点连接端点的方式连接后,能够组成一个矩形但是不能组成一个正方形。
你的任务是帮助Pasha去计算有多少种方法。
两种方法是不同的,当且仅当存在一个数x,在两种方法中,x长度的小棒的数目是不同的。
Input第一行输入包括一个正整数n (1 ≤ n ≤ 2·109) Pasha的大棒的长度
Output输出包括一个数字 -- 将Pasha的大棒切成4根小棒,这四根小棒通过端点连接端点的方式连接后,只能组成矩形不能组成正方形的切割方式的数目。
Sample Input1
4
第一个样例的唯一切割方法是 {1, 1, 2, 2}.
第二个样例的切割方法有4种: {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}.
请注意,{5, 5, 5, 5} 是不行的。
#include
#include
typedef long long ll;
using namespace std;
ll n,ans;
int main()
{
while(cin >> n)
{
ans=n/4;
if (n%4==0) ans--;
if (n%2) cout << "0" << endl;
else cout << ans << endl;
}
return 0;
}
今天是星期三,一周中的第三天,明天就是2015年的最后一天。
Limak是一只小熊,它很期待2016年。
Limak靠吃糖维生,为了证明自己是有多么努力的活下去,他决定在2016年一整年中,定期的存一些糖。它考虑过很多种存糖方案,它可以在一周的某一天或者一个月的某一天存一颗糖。
Limak决定从两种方案中选择一种,但是他不知道按照这种方式,他会在2016年一整年存多少糖。请你计算后告诉它。
Input唯一一行输入会以下面两种方式输入
输出Limak在2016结束后会存多少糖
Sample Input52
11
HintLimak的日历是公历。于是你也要按照公历来计算。星期一是一个星期的开始。
可以从电脑自带的日历看到2016年的公历。
第一个样例中Limak会在每个星期四存一颗糖,2016年一共有52个星期四,所以Limak在2016年会存52颗糖。
第二个样例中Limak会在每个月的30号存下一颗糖,2016年一共有11个30号,所以Limak在2016年会存11颗糖。
#include
#include
#include
using namespace std;
string s1,s2;
int n,ans;
int main()
{
while(cin >> n >> s1 >> s2)
{
if (s2=="week")
{
if (n==5||n==6) ans=53;
else ans=52;
}
else
{
if (n<=29) ans=12;
else if (n==30) ans=11;
else if (n==31) ans=7;
}
cout << ans << endl;
}
return 0;
}
从很久很久以前,那里有一个画展,画展有n幅画,第i幅画有一个美丽指数ai。我们知道的是,一个当游览者从一张画到一张美丽指数更高的画的时候,会变得开心。
画将会一列的排放,我们可以随意安排画的顺序。那么如果游览者以从头到尾的顺序游览的画,总共最多可以变开心多少次呢。
换而言之,我们需要将美丽指数重新排列,使得有最多的i (1 ≤ i ≤ n - 1), 符合 ai + 1 > ai. 输出符合条件的i的数目。
Input第一行输入一个整数n (1 ≤ n ≤ 1000) -- 画的数目
第二行输入一串整数序列 a1, a2, ..., an (1 ≤ ai ≤ 1000) -- ai 表示第i张画的美丽指数。
Output
输出一个整数 - 排序后,使得满足ai + 1 > ai 的i最多的数目
Sample Input4
2Hint
在第一个样例中,排序后的序列是:10,20,30,40,50
在第二个样例中,排序后的序列是:100,200,100,200
#include
#include
#include
using namespace std;
int n,a[1005],t,ans;
int main()
{
while(cin >> n)
{
ans=0;
for (int i=0;it)
{
t=a[j];
a[j]=0; //走过的地方置0
ans++;
}
}
}
cout << ans << endl;
}
return 0;
}
1 8 5 0Sample Output
1 92 10
#include
#include
#include
#include
using namespace std;
int vis[15],pre[15],n,cnt;
int ans[15]={0,1,0,0,2,10,4,40,92,352,724};
void dfs(int x)
{
if (x==n)
{
cnt++;
return;
}
for (int j=0;j> n && n)
{
/*
memset(vis,0,sizeof(vis));
cnt=0;
for (int i=0;i
一个无限长的铁路有一个载着n辆车的火车,每一辆车的编号从1到n。每一辆车的编号都是不同的。他们的顺序是无序的。
David Blaine想要将这些车按照他们的编号从小到大排序,他可以做两种操作。第一种,他可以将一辆车从任意位置移动到所有车的第一位。第二种,他可以将一辆车从任意位置移动到所有车的最后一位。
不过他很懒,所以他想知道将这些车排好序最少做几次操作就可以。
Input第一行输入包含一个整数n (1 ≤ n ≤ 100 000) -- 车的数目
第二行包含n个整数 pi (1 ≤ pi ≤ n, pi ≠ pj if i ≠ j) - 车的编号的初始序列
Output输出一个整数 - 将车辆排好序的最小操作次数
Sample Input2
2
Hint在第一个样例中,将编号为4的车放到最后,然后把编号为5的车放到最后就可以了。总共是2次操作。
#include
#include
#include
using namespace std;
int a[100005];
int n,x;
int main()
{
while(cin >> n)
{
memset(a,0,sizeof(a));
int maxl=0;
for (int i=0;imaxl) maxl=a[x]; //最长的长度
}
cout << min(n,n-maxl) << endl;
}
return 0;
}
0 0 0 0 0 0 0 100 5 20 34 325 4 5 6 7 283 102 23 320 203 301 203 40 -1 -1 -1 -1Sample Output
Case 1: the next triple peak occurs in 21252 days. Case 2: the next triple peak occurs in 21152 days. Case 3: the next triple peak occurs in 19575 days. Case 4: the next triple peak occurs in 16994 days. Case 5: the next triple peak occurs in 8910 days. Case 6: the next triple peak occurs in 10789 days.Hint
Translator
#include
#include
using namespace std;
int p,e,i,d,ans,cnt=0;
int main()
{
while(cin >> p >> e >> i >> d)
{
if (p==-1&&e==-1&&i==-1&&d==-1)
break;
ans=0;
for (int j=1;j<=21252;j++)
{
if ((j+d-p)%23==0&&(j+d-e)%28==0&&(j+d-i)%33==0) //暴力一天一天试,看满足条件不。
{
ans=j;
break;
}
}
printf("Case %d: the next triple peak occurs in %d days.\n",++cnt,ans);
}
return 0;
}