竞赛讨论区 > B题为啥只有80%
头像
Roson
发布于 2021-01-22 21:55
+ 关注

B题为啥只有80%

#include<iostream>
#include<stdio.h>
#include<unordered_map>
 
using namespace std;
 
int main()
{
    int n ;
    cin >> n;
    long long count = 0;
    unordered_map<long long, int>res;
    while(n)
    {
        long long a;
        cin >> a;
         if(res[a+1])
        {
            res[a+1] = 0;
            res[a] =1;
        }
        else
        {
            res[a] = 1;
            count++;
        }
        n--;
    }
 
    cout << count;
    return 0;
}

全部评论

(0) 回帖
加载中...
话题 回帖

等你来战

查看全部

热门推荐