本文主要是介绍Codeforces Round #401 (Div. 2)B. Game of Credit Cards(贪心),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目:
After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards.
Rules of this game are simple: each player bring his favourite n-digit credit card. Then both players name the digits written on their cards one by one. If two digits are not equal, then the player, whose digit is smaller gets a flick (knock in the forehead usually made with a forefinger) from the other player. For example, if n = 3, Sherlock's card is 123 and Moriarty's card has number 321, first Sherlock names 1 and Moriarty names 3 so Sherlock gets a flick. Then they both digit 2 so no one gets a flick. Finally, Sherlock names 3, while Moriarty names 1 and gets a flick.
Of course, Sherlock will play honestly naming digits one by one in the order they are given, while Moriary, as a true villain, plans to cheat. He is going to name his digits in some other order (however, he is not going to change the overall number of occurences of each digit). For example, in case above Moriarty could name 1, 2, 3 and get no flicks at all, or he can name 2, 3 and 1 to give Sherlock two flicks.
Your goal is to find out the minimum possible number of flicks Moriarty will get (no one likes flicks) and the maximum possible number of flicks Sherlock can get from Moriarty. Note, that these two goals are different and the optimal result may be obtained by using different strategies.
The first line of the input contains a single integer n (1 ≤ n ≤ 1000) — the number of digits in the cards Sherlock and Moriarty are going to use.
The second line contains n digits — Sherlock's credit card number.
The third line contains n digits — Moriarty's credit card number.
First print the minimum possible number of flicks Moriarty will get. Then print the maximum possible number of flicks that Sherlock can get from Moriarty.
3 123 321
0 2
2 88 00
2 0
First sample is elaborated in the problem statement. In the second sample, there is no way Moriarty can avoid getting two flicks.
一道贪心水题,比赛的时候忘了怎么做,和田忌赛马思路差不多,注意指针的移动,当一个比不过的时候指针别动,直到能比过
代码:
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <string>
#include <iostream>
#include <stack>
#include <queue>
#include <vector>
#include <algorithm>
#define mem(a,b) memset(a,b,sizeof(a))
#define N 65536+20
#define M 105105+20
#define inf 0x3f3f3f3f
using namespace std;
int main()
{int n,x;cin>>n;string s1,s2;cin>>s1>>s2;sort(s1.begin(),s1.end());sort(s2.begin(),s2.end());int j=n-1;for(int i=n-1; i>=0; i--)if(s2[j]>=s1[i])j--;cout<<j+1<<endl;j=0;for(int i=0; i<n; i++)if(s2[i]>s1[j])j++;cout<<j<<endl;return 0;
}
这篇关于Codeforces Round #401 (Div. 2)B. Game of Credit Cards(贪心)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!