• HDU6188


    Duizi and Shunzi

    Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 153    Accepted Submission(s): 71


    Problem Description

    Nike likes playing cards and makes a problem of it.

    Now give you n integers, ai(1in)

    We define two identical numbers (eg: 2,2) a Duizi,
    and three consecutive positive integers (eg: 2,3,4) a Shunzi.

    Now you want to use these integers to form Shunzi and Duizi as many as possible.

    Let s be the total number of the Shunzi and the Duizi you formed.

    Try to calculate max(s).

    Each number can be used only once.
     

    Input

    The input contains several test cases.

    For each test case, the first line contains one integer n(1n106). 
    Then the next line contains n space-separated integers ai (1ain)
     

    Output

    For each test case, output the answer in a line.
     

    Sample Input

    7 1 2 3 4 5 6 7 9 1 1 1 2 2 2 3 3 3 6 2 2 3 3 3 3 6 1 2 3 3 4 5
     

     

    Sample Output

    2 4 3 2

    Hint

    Case 1(1,2,3)(4,5,6) Case 2(1,2,3)(1,1)(2,2)(3,3) Case 3(2,2)(3,3)(3,3) Case 4(1,2,3)(3,4,5)
     

    Source

     
     1 //2017-08-31
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <iostream>
     5 #include <algorithm>
     6 
     7 using namespace std;
     8 
     9 const int N = 1100000;
    10 int arr[N], n;
    11 bool book[N];
    12 
    13 int main()
    14 {
    15     //freopen("input1007.txt", "r", stdin);
    16     while(scanf("%d", &n) != EOF){
    17         for(int i = 0; i < n; i++)
    18               scanf("%d", &arr[i]);
    19         sort(arr, arr+n);
    20         memset(book, 0, sizeof(book));
    21         int ans = 0;
    22         for(int i = 1; i < n; i++){
    23             if(i >= 2){
    24                 int p1 = -1, p2 = -1;
    25                 for(int j = i-1; j >= 0; j--){
    26                     if(arr[j] == arr[i]-1 && !book[j]){
    27                         p1 = j;
    28                     }
    29                     if(arr[j] == arr[i]-2 && !book[j]){
    30                         p2 = j;
    31                         break;
    32                     }
    33                     if(arr[j] < arr[i]-1)break;
    34                 }
    35                 if(p1 != -1 && p2 != -1){
    36                     ans++;
    37                     book[i] = book[p1] = book[p2] = 1;
    38                 }
    39             }
    40             if(arr[i-1] == arr[i] && !book[i-1] && !book[i]){
    41                 ans++;
    42                 book[i-1] = book[i] = 1;
    43             }
    44         }
    45         printf("%d
    ", ans);
    46     }
    47 
    48     return 0;
    49 }
  • 相关阅读:
    servlet-servletConfig
    servlet-servletContext网站计数器
    servlet-cookie
    Android 无cp命令 mv引起cross-device link
    android使用mount挂载/system/app为读写权限,删除或替换系统应用
    android使用百度地图、定位SDK实现地图和定位功能!(最新、可用+吐槽)
    解决android sdk manager无法下载SDK 的问题
    Android APK反编译详解(附图)
    Android如何防止apk程序被反编译
    不用外部JAR包,自己实现JSP文件上传!
  • 原文地址:https://www.cnblogs.com/Penn000/p/7460628.html
Copyright © 2020-2023  润新知