摘要:
A 题目:六个数字中是否满足1有1个,2有两个,三有三个; 模拟 #include<bits/stdc++.h> using namespace std; typedef long long ll; const ll N = 2e5+5; map<int, int> ma; int n,flag; 阅读全文
摘要:
A题 题目描述 给定一组数,找出这组数的子序列中有一个包含从1~n的所有数字(此处子序列是从最初序列通过去除某些元素但不破坏余下元素的相对位置(在前或在后)而形成的新序列) 用map记录每个数出现与否,再判断是否满足题意 代码 #include<bits/stdc++.h> using namesp 阅读全文