zoukankan      html  css  js  c++  java
  • CodeForces 651B Beautiful Paintings

    乱搞题,先对序列排序,每次找到最小的没用过的比前一个大的数字放上去,找不到放没用过的最小的放上去。

    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <cmath>
    #include <algorithm>
    #include <ctime>
    #include <stack>
    using namespace std;
    
    const int maxn = 1000 + 10;
    int a[maxn];
    int ans[maxn];
    bool flag[maxn];
    int n;
    
    int main()
    {
        scanf("%d", &n);
        for (int i = 1; i <= n; i++) scanf("%d", &a[i]);
        memset(flag, 0, sizeof flag);
        sort(a + 1, a + 1 + n);
        ans[1] = a[1];
        flag[1] = 1;
        for (int i = 2; i <= n; i++)
        {
            int pos = -1;
            for (int j = 1; j <= n; j++)
            {
                if (flag[j] == 0 && a[j]>ans[i - 1])
                {
                    pos = j;
                    flag[j] = 1;
                    break;
                }
            }
            if (pos != -1)
            {
                ans[i] = a[pos];
            }
            else
            {
                for (int j = 1; j <= n; j++)
                {
                    if (flag[j] == 0)
                    {
                        pos = j;
                        flag[j] = 1;
                        break;
                    }
                }
                ans[i] = a[pos];
            }
        }
    
        int uu = 0;
        for (int i = 1; i<n; i++) if (ans[i]<ans[i + 1])  uu++;
    
        printf("%d
    ", uu);
    
        return 0;
    }
  • 相关阅读:
    万恶的VS2010 快捷键
    C# 入门篇之listview用法
    MySQL安装常见错误及解决方案
    【转】MySQL命令
    #字符串 770. 单词替换
    #字符串 字符串替换 POJ
    # 4 Values whose Sum is 0 (POJ
    #Shopping HDU
    #疯狂搜索( POJ-1200) #哈希
    #哈希 题目:Eqs(POJ
  • 原文地址:https://www.cnblogs.com/zufezzt/p/5252711.html
Copyright © 2011-2022 走看看