Soldier and Badges (set的检索简单运用)

Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it‘s owner reached. Coolness factor can be increased by one for the cost of one coin.

For every pair of soldiers one of them should get a badge with strictly higher factor than the second one. Exact values of their factors aren‘t important, they just need to have distinct factors.

Colonel knows, which soldier is supposed to get which badge initially, but there is a problem. Some of badges may have the same factor of coolness. Help him and calculate how much money has to be paid for making all badges have different factors of coolness.

Input

4

1 3 1 4

Output

1

思路:让这些数全都不一样就可以了!!!建立数组循环,从第二个开始,每次检索并增加,知道set堆里面没有相同的位置为止!!!

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<string>
 5 #include<set>
 6 #include<vector>
 7 #include<stack>
 8 #include<queue>
 9 #include<algorithm>
10 #include<iostream>
11 #include<cstdio>
12 #include<algorithm>
13 using namespace std;
14 int main()
15 {
16
17     int n;
18     cin>>n;
19     set <int> s;
20     int a[3005];
21     int flag=0;
22     for(int i=0;i<n;i++)
23         cin>>a[i];
24         s.insert(a[0]);
25         set<int>::iterator it;
26     for(int i=1;i<n;i++)
27     {
28         it=s.find(a[i]);
29        while(it!=s.end())
30         {
31             a[i]++;
32             flag++;
33             it=s.find(a[i]);
34
35         }
36         s.insert(a[i]);
37 }
38 cout<<flag<<endl;
39
40
41     return 0;
42 }
时间: 2024-08-03 16:28:45

Soldier and Badges (set的检索简单运用)的相关文章

Week 1 # O Soldier and Badges

原题描述: O - Soldier and Badges Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin. For

贪心 Codeforces Round #304 (Div. 2) B. Soldier and Badges

题目传送门 1 /* 2 题意:问最少增加多少值使变成递增序列 3 贪心:排序后,每一个值改为前一个值+1,有可能a[i-1] = a[i] + 1,所以要 >= 4 */ 5 #include <cstdio> 6 #include <cstring> 7 #include <algorithm> 8 using namespace std; 9 10 typedef long long ll; 11 12 const int MAXN = 3e3 + 10;

Codeforces Round #304 (Div. 2)——1002—— Soldier and Badges

Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin. For every pair of soldiers one o

O - Soldier and Badges

Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin. For every pair of soldiers one o

CF 546B Soldier and Badges

Describe Colonel has n badges. He wants to give one badge to every of his n soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin. For every pair of soldi

codeforce 304 B. Soldier and Badges

<span style="font-family: 'Courier New'; background-color: rgb(255, 255, 255);"> </span><span style="font-family: 'Courier New'; background-color: rgb(255, 255, 255);">第一次打cf,感觉挺爽的,页面看着很爽,大概是因为这次的比较简单吧,这道题有点像FZU的最小花费,

Soldier and Badges

题目链接:http://acm.hust.edu.cn/vjudge/problem/visitOriginUrl.action?id=173144 题意: 输入n个数,要使这n个数都不相同,且只能加,输出最少要加的多少. 案例: 1)input 4 1 3 1 4 output 1 2)input 5 1 2 3 2 5 output 2 思路分析: 利用插空法.尽量减少循环. 先对数组进行排序,再找出有x个相同的数,且把相同的数存在另一个数组c中.因为这个数组c也是排序的,所以只要找出x个比

546B. Soldier and Badges

题目链接 题意: n个数,要保证这n个数完全不相同,求需要把原来的数增加多少,求这个值得最小值   Java 程序 import java.io.PrintStream; import java.util.Arrays; import java.util.Scanner; import java.util.Set; import java.util.TreeSet; public class B546 { static void run(){ Scanner in = new Scanner(S

Codeforces546B:Soldier and Badges

题意: 给出一些数字,要求每个数字都不一样需要增加几 思路: 先排序,然后一个个增加,最后求总和差 #include <iostream> #include <stdio.h> #include <string.h> #include <string> #include <stack> #include <queue> #include <map> #include <set> #include <vec