hdu 6188

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 6188相关的知识,希望对你有一定的参考价值。

题意:给出一个数列,问能组成对子和顺子的最大数目

思路:我们当然知道优先组成对子,但是有 1 2 3 3 4 5的话,就不适应了,所以得判断下该种情况

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 const int N = 2e6;
 5 
 6 int n,x,H[N];
 7 
 8 int main( ){
 9     while(scanf("%d",&n)!=EOF) {
10         for(int i = 1; i <= n; ++i) H[i] = 0;
11         for(int i = 1; i <= n; ++i) scanf("%d",&x),H[x] += 1;
12         int ans = 0;
13         for(int i = 1; i <= n; ++i) {
14             if(!H[i]) continue;
15             if(i-1>=1 && i-2 >= 1 && H[i-1] && H[i-2])
16                 ans += 1,H[i] -= 1,H[i-1]-=1,H[i-2] -= 1;
17             ans += H[i] / 2,H[i] = H[i] % 2;
18         }
19         printf("%d\n",ans);
20     }
21     return 0;
22 }

 

以上是关于hdu 6188的主要内容,如果未能解决你的问题,请参考以下文章

hdu 6188

HDU 6188最小费用流

HDU 6188 Duizi and Shunzi

hdu 6188 Duizi and Shunzi

hdu6188 Duizi and Shunzi (贪心或者dp)

jetty 8.x, 9.x无法加载jstl的PWC6188问题,jstlpwc6188