zoukankan      html  css  js  c++  java
  • 强大的unique

    强大的unique

    两道红题为例眼熟一下unique

    P1138 第k小整数

    题解

    这里用到了STL的去重函数哦

    unique

    首先你有一个待处理的数组 a[n]

    一定要先排序鸭  sort( a+1 , a+n+1 )

    然后  int  nn=unique( a+1 , a+n+1 ) - (a+1) 

    这个nn就是去重后的数组长度,不重复而且排好序的数字就存在 a[1]~a[nn] 啦

    重复的数字放在后面了 a[nn+1]~a[n]

    注意这题有无解的情况QWQ

    代码

    #include<iostream>
    #include<cstdio>
    #include<string>
    #include<cstring>
    #include<algorithm>
    #include<cmath>
    #include<cstdlib>
    #include<queue>
    
    using namespace std;
    
    inline int read()
    {
        int ans=0;
        char last=' ',ch=getchar();
        while(ch<'0'||ch>'9') last=ch,ch=getchar();
        while(ch>='0'&&ch<='9') ans=ans*10+ch-'0',ch=getchar();
        if(last=='-') ans=-ans;
        return ans;
    }
     
    int n,k;
    int a[10010];
    
    int main()
    {
        n=read();k=read();
        for(int i=1;i<=n;i++) a[i]=read();
        sort(a+1,a+n+1);
        int kk=unique(a+1,a+n+1)-(a+1);
        if(k>kk) printf("NO RESULT
    ");
        else printf("%d
    ",a[k]);
        return 0;
    }
    
     

    P1317 低洼地

    题解

    你考虑unique不先排序就去重

    你发现它会把相邻的重复的给去掉
     
                   就好比啊    0 1 2 2 1 1 0 1 0 1
     排序之后去重就是    0 1 2 0 0 1 1 1 1 2
         不排序去重就是    0 1 2 1 0 1 0 1 1 2
     
    然后你就可以巧妙的利用这个阔怕的性质
     

    代码

    #include<iostream>
    #include<cstdio>
    #include<string>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    #include<queue>
    #include<cstdlib>                                                                             
    
    using namespace std;
    
    inline int read()
    {
        int ans=0;
        char last=' ',ch=getchar();
        while(ch<'0'||ch>'9') last=ch,ch=getchar();
        while(ch>='0'&&ch<='9') ans=ans*10+ch-'0',ch=getchar();
        if(last=='-') ans=-ans;
        return ans;
    }
    
    int n,ans=0;
    int a[10005];
    
    int main()
    {
        n=read();
        for(int i=1;i<=n;i++)
          a[i]=read();
        int kk=unique(a+1,a+n+1)-(a+1);
        for(int i=1;i<=kk;i++)
        {
            if(i==1||i==kk) continue;
            if(a[i-1]>a[i]&&a[i]<a[i+1])
             ans++;
        }
          
        printf("%d",ans);
        return 0;
    }
  • 相关阅读:
    button 垂直分布
    GitHub上值得关注的iOS开源项目
    电脑连接网络(网络正常),但不能上网,登录网页提示dns_probe_finished_no_internet
    android 模拟应用因内存不足被后台杀死命令
    android 屏幕划分
    android 没有root的手机导出数据库
    移动硬盘不能识别,设备管理器中显示黄色感叹号
    低功耗蓝牙开发(BLE)
    音视频学习笔记
    Java中为什么要使用线程池?如何使用?
  • 原文地址:https://www.cnblogs.com/xiaoyezi-wink/p/11257163.html
Copyright © 2011-2022 走看看