码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces Round #558 Div.2

时间:2019-05-22 22:18:42      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:target   play   contest   one   test   c++   int   codeforce   printf   

A. Eating Soup

技术图片
#include <bits/stdc++.h>
using namespace std;

int N, M;

int main() {
    scanf("%d%d", &N, &M);
    int ans;
    if(N == M) ans = 0;
    else if(M == 0 || M == 1 || M == N - 1) ans = 1;
    else {
         if(M <= N / 2) ans = M;
         else ans = N - M;
    }
    printf("%d\n", ans);
    return 0;
}
View Code

B1. Cat Party (Easy Edition)

B2. Cat Party (Hard Edition)

技术图片
#include <bits/stdc++.h>
using namespace std;

const int maxn = 1e5 + 10;
int N;
int a[maxn];
map<int, int> mp;
map<int, int> cnt;

int main() {
    scanf("%d", &N);
    int ans = 0, maxx = -1, vis = 0;
    int flag = -1;

    for(int i = 1; i <= N; i ++) {
        scanf("%d", &a[i]);
        if(mp[a[i]] == 0) vis ++;
        cnt[mp[a[i]]] --;
        mp[a[i]] ++;
        cnt[mp[a[i]]] ++;
        maxx = max(maxx, mp[a[i]]);

        if(vis - 1 == cnt[maxx - 1] && cnt[maxx] == 1)
            ans = i, flag = 1;
        if(vis == cnt[1]) ans = i + 1, flag = 2;
        if(cnt[1] == 1 && cnt[maxx] == vis - 1) ans = i, flag = 3;
    }

    ans = min(N, ans);
    printf("%d\n", ans);
    return 0;
}
View Code

读题读错白白抑郁一天 今天可能写了史上最 lao 的 bug 我为什么还要把它给 FH 看???

CodeForces Round #558 Div.2

标签:target   play   contest   one   test   c++   int   codeforce   printf   

原文地址:https://www.cnblogs.com/zlrrrr/p/10908880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!