One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality of the first laptop is higher (strictly greater) than the quality of the second laptop.
Please, check the guess of Alex. You are given descriptions of n laptops. Determine whether two described above laptops exist.
The first line contains an integer n (1 ≤ n ≤ 105) — the number of laptops.
Next n lines contain two integers each, ai and bi (1 ≤ ai, bi ≤ n), where ai is the price of the i-th laptop, and bi is the number that represents the quality of the i-th laptop (the larger the number is, the higher is the quality).
All ai are distinct. All bi are distinct.
If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).
2
1 2
2 1
Happy Alex
题意:n个物品 a为价格 b为物品的质量 若满足价格越高质量越好 输出Poor Alex 反之输出Happy Alex
题解:水 注意结构体排序的一个细节....orz
1 /****************************** 2 code by drizzle 3 blog: www.cnblogs.com/hsd-/ 4 ^ ^ ^ ^ 5 O O 6 ******************************/ 7 #include<bits/stdc++.h> 8 #include<iostream> 9 #include<cstring> 10 #include<cstdio> 11 #include<map> 12 #include<algorithm> 13 #include<queue> 14 #define ll __int64 15 using namespace std; 16 int n; 17 struct node 18 { 19 int a,b; 20 }N[100005]; 21 bool cmp(struct node aa,struct node bb) 22 { 23 return aa.a<bb.a; 24 } 25 int main() 26 { 27 scanf("%d",&n); 28 int flag=0; 29 for(int i=0;i<n;i++){ 30 scanf("%d %d",&N[i].a,&N[i].b); 31 if(N[i].a!=N[i].b) 32 flag=1; 33 } 34 if(flag) 35 cout<<"Happy Alex"<<endl; 36 else 37 cout<<"Poor Alex"<<endl; 38 return 0; 39 }
Fedya studies in a gymnasium. Fedya's maths hometask is to calculate the following expression:
for given value of n. Fedya managed to complete the task. Can you? Note that given number n can be extremely large (e.g. it can exceed any integer type of your programming language).
The single line contains a single integer n (0 ≤ n ≤ 10105). The number doesn't contain any leading zeroes.
Print the value of the expression without leading zeros.
4
4
124356983594583453458888889
0
Operation x mod y means taking remainder after division x by y.
Note to the first sample:
题意:计算(1n + 2n + 3n + 4n) mod 5 n为次幂 n为大数
枚举n的值可以发现规律 只要n%4==0则输出4 否则输出0 剩下的问题就是大数对小数取模了
题解:大数对小数取模 从高位到低位 具体看代码
1 /****************************** 2 code by drizzle 3 blog: www.cnblogs.com/hsd-/ 4 ^ ^ ^ ^ 5 O O 6 ******************************/ 7 #include<bits/stdc++.h> 8 #include<iostream> 9 #include<cstring> 10 #include<cstdio> 11 #include<map> 12 #include<algorithm> 13 #include<queue> 14 #define ll __int64 15 using namespace std; 16 int n; 17 char a[100005]; 18 int main() 19 { 20 cin>>a; 21 n=strlen(a); 22 int exm=0; 23 for(int i=0;i<n;i++) 24 { 25 exm=exm*10+a[i]-'0'; 26 exm%=4; 27 } 28 if(exm==0) 29 cout<<"4"<<endl; 30 else 31 cout<<"0"<<endl; 32 return 0; 33 }
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it.
Given a sequence a consisting of n integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it ak) and delete it, at that all elements equal to ak + 1 and ak - 1 also must be deleted from the sequence. That step brings ak points to the player.
Alex is a perfectionist, so he decided to get as many points as possible. Help him.
The first line contains integer n (1 ≤ n ≤ 105) that shows how many numbers are in Alex's sequence.
The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 105).
Print a single integer — the maximum number of points that Alex can earn.
2
1 2
2
3
1 2 3
4
9
1 2 1 3 2 2 2 2 3
10
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this[2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
题意:给你n个值 每次取出一个值ak 则删除所有的ak +1 ,ak -1 一直到最后一个数
输出 取出的值的和的最大值
题解:这n个值的范围为1 ≤ ai ≤ 10^5 先标记 记录每个数i出现的次数dis[i]
转移方程 dp[i]=max(dp[i-2]+i*dis[i],dp[i-1]) 也就是相当于判断当前这个数是被删除?还是被取出?
i*dis[i]表示数i对结果的贡献 dp[i]代表以i为结尾的所要求的最大值
1 /****************************** 2 code by drizzle 3 blog: www.cnblogs.com/hsd-/ 4 ^ ^ ^ ^ 5 O O 6 ******************************/ 7 #include<bits/stdc++.h> 8 #include<iostream> 9 #include<cstring> 10 #include<cstdio> 11 #include<map> 12 #include<algorithm> 13 #include<queue> 14 #define ll __int64 15 using namespace std; 16 int n; 17 ll a[100005]; 18 ll dis[100005]; 19 ll ans[100005]; 20 int main() 21 { 22 scanf("%d",&n); 23 memset(dis,0,sizeof(dis)); 24 memset(ans,0,sizeof(ans)); 25 for(int i=1;i<=n;i++) 26 { 27 scanf("%I64d",&a[i]); 28 dis[a[i]]++; 29 } 30 ans[1]=dis[1]; 31 for(int i=2;i<=1e5;i++) 32 ans[i]=max(ans[i-2]+i*dis[i],ans[i-1]); 33 printf("%I64d ",ans[100000]); 34 return 0; 35 }