zoukankan      html  css  js  c++  java
  • CodeForces 730A Toda 2 (模拟)

    题意:给定一个序列,现在你每次至多给5个人的权值减小1,最少2个人,最小是0,使得剩下的所有权值都相等且尽量大。

    析:用multiset来模拟,每次取权值最大的三个或者两个,直到最后相等。我开始没有这个STL,自己写的,虽然过了,但是好麻烦,后来看的题解是用这个。

    代码如下:

    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include <cstdio>
    #include <string>
    #include <cstdlib>
    #include <cmath>
    #include <iostream>
    #include <cstring>
    #include <set>
    #include <queue>
    #include <algorithm>
    #include <vector>
    #include <map>
    #include <cctype>
    #include <cmath>
    #include <stack>
    #define freopenr freopen("in.txt", "r", stdin)
    #define freopenw freopen("out.txt", "w", stdout)
    using namespace std;
    typedef long long LL;
    typedef pair<int, int> P;
    const int INF = 0x3f3f3f3f;
    const double inf = 0x3f3f3f3f3f3f;
    const LL LNF = 0x3f3f3f3f3f3f;
    const double PI = acos(-1.0);
    const double eps = 1e-8;
    const int maxn = 1e2 + 100;
    const int mod = 1e9 + 7;
    const int dr[] = {-1, 0, 1, 0};
    const int dc[] = {0, 1, 0, -1};
    const char *Hex[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
    int n, m;
    const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    inline int Min(int a, int b){ return a < b ? a : b; }
    inline int Max(int a, int b){ return a > b ? a : b; }
    inline LL Min(LL a, LL b){ return a < b ? a : b; }
    inline LL Max(LL a, LL b){ return a > b ? a : b; }
    inline int gcd(int a, int b){ return b ? gcd(b, a%b) : a; }
    inline int lcm(int a, int b){ return a * b / gcd(a, b); }
    inline bool is_in(int r, int c){
        return r >= 0 && r < n && c >= 0 && c < m;
    }
    struct Node{
        int num, id;
        Node() { }
        Node(int n, int i) : num(n), id(i) { }
        bool operator < (const Node &p) const{
            return num > p.num;
        }
    };
    Node a[maxn];
    char s[maxn];
    int mmin;
    bool cmp(const Node &lhs, const Node& rhs){
        return lhs.num > rhs.num;
    }
    vector<string> ans;
    multiset<Node> sets, tmp;
    multiset<Node> :: iterator it;
    
    void print(){
        printf("%d
    ", ans.size());
        for(int i = 0; i < ans.size(); ++i)
            cout << ans[i] << endl;
    }
    int main(){
        while(scanf("%d", &n) == 1){
            sets.clear();  ans.clear();
            for(int i = 0; i < n; ++i){
                scanf("%d", &m);
                sets.insert(Node(m, i));
            }
            for(int i = 0; i < n; ++i) s[i] = '0';
            s[n] = 0;
            while(sets.begin()->num != sets.rbegin()->num){
                int cnt = 2, t[3];
                if(sets.count(*sets.begin()) == 3) ++cnt;
                tmp.clear();it = sets.begin();
                for(int i = 0; i < cnt; ++i){
                    Node u = *it;
                    sets.erase(it++);
                    u.num = Max(0, u.num-1);
                    t[i] = u.id;
                    s[t[i]] = '1';
                    tmp.insert(u);
                }
                ans.push_back(s);
                for(int i = 0; i < cnt; ++i)  s[t[i]] = '0';
                sets.insert(tmp.begin(), tmp.end());
            }
            printf("%d
    ", sets.begin()->num);
            print();
        }
        return 0;
    }
    
  • 相关阅读:
    STM32关于优先级设定的理解 NVIC_SetPriority()
    linux6.2安装mysql
    【PAT】1009. Product of Polynomials (25)
    Android的重力传感器(3轴加速度传感器)简单实例
    out/target/common/obj/PACKAGING/public_api.txt android.view.KeyEvent.KEYCODE_has changed value from
    框架技术--Spring自动加载配置
    NSDate conversion utilities
    Poj 1201 Intervals
    asp导航条子菜单横向
    大学四年,你必须做的事---这些计算机科学
  • 原文地址:https://www.cnblogs.com/dwtfukgv/p/5997946.html
Copyright © 2011-2022 走看看