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

HZNU 2019 Summer Selection contest 1

时间:2019-07-04 20:13:13      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ack   cli   lan   max   blank   range   sel   view   pairs   

A - Nastya Is Buying Lunch

 CodeForces - 1136D 

 

 

B - Neko Performs Cat Furrier Transform

 CodeForces - 1152B 

 

 

C - TV Shows

 CodeForces - 1061D 

 

D - Pairs

 CodeForces - 1169B 

 

 

E - Increasing by Modulo

 CodeForces - 1169C 

 

F - Good Triple

 CodeForces - 1169D 

 

 

G - The Tag Game

 CodeForces - 813C 

 

H - Money Transfers

 CodeForces - 675C 

 

 

I - Mahmoud and Ehab and the MEX

 CodeForces - 862A 

题意:给你一个大小为n的集合,里面有0~100以内的数字,然后你要保证集合里缺少的数字为x。有插入和删除的操作,问你最少需要几步的操作。

思路:非常简单。不需要说明什么。就是读题有点久。

技术图片
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<queue>
#include<set>
#include<string>
#include<vector>
#include<ctime>
#include<stack>
#include<fstream>
#include<iomanip>
#include<deque>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define mm(a,b) memset(a,b,sizeof(a))
#define maxn 2*500000+50
#define len 150000000+5
#define inf 0x3f3f3f3f
int gcd(int a, int b)
{
    return a % b == 0 ? b : gcd(b, a%b);
}


int main()
{
    int n, x;
    int cnt[150] = {0};
    scanf("%d %d", &n, &x);
    for (int i = 0; i < n; i++)
    {
        int a;
        scanf("%d", &a);
        cnt[a]++;
    }
    if (x == 0)
    {
        printf("%d\n", cnt[0]);
    }
    else
    {
        int ans = 0;
        for (int i = 0; i < x; i++)
        {
            if (cnt[i] == 0) ans++;
        }
        ans += cnt[x];
        printf("%d\n", ans);
    }

    return 0;
}
View Code

 

J - Vitya and Strange Lesson

 CodeForces - 842D 

 

HZNU 2019 Summer Selection contest 1

标签:ack   cli   lan   max   blank   range   sel   view   pairs   

原文地址:https://www.cnblogs.com/Tangent-1231/p/11134610.html

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