栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

Codeforces Round #789 (Div. 2) A :Tokitsukaze and All Zero Sequence (思维,unique)

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Codeforces Round #789 (Div. 2) A :Tokitsukaze and All Zero Sequence (思维,unique)

https://codeforces.com/contest/1678/problem/A

 

AC代码; 

#include   //常用开头模板,保存在文档,下次直接用 
#include 
#include 
#include 

#define sx first
#define sy second

using namespace std;

typedef long long LL;
typedef pairPII;

const int N=100010,mod=1e9+7;

int dx[]={1,-1,0,0};  //常用开头模板,保存在文档,下次直接用 
int dy[]={0,0,1,-1};  

int n,m;
int g[N];

int main()
{
	int t;
	cin>>t;
	while (t--)
	{
		cin>>n;
		int res=0;
		for(int i=0;i>g[i];
			if(g[i]>0)
			res++;
		}
		sort(g,g+n);
		if(g[0]==0)
			cout< 

C++中unique() 函数;

        

  • unique的作用是“去掉”容器中相邻元素的重复元素(不一定要求数组有序),它会把重复的元素添加到容器末尾(所以数组大小并没有改变),而返回值是去重之后的尾地址,并不一定是最后一个位置。
  • 由于返回的是容器末尾,所以如果想得到去重后的size,需要减去初始地址

g[]={1,2,2,3};

int ans=unique(g,g+n)-g;

g[]={1,2,3,2};

下标  ans=2

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/868977.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号