码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • B. Remove Prefix


    time limit per test

    2 seconds

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    Polycarp was presented with some sequence of integers aa of length nn (1≤ai≤n1≤ai≤n). A sequence can make Polycarp happy only if it consists of different numbers (i.e. distinct numbers).

    In order to make his sequence like this, Polycarp is going to make some (possibly zero) number of moves.

    In one move, he can:

    • remove the first (leftmost) element of the sequence.

    For example, in one move, the sequence [3,1,4,3][3,1,4,3] will produce the sequence [1,4,3][1,4,3], which consists of different numbers.

    Determine the minimum number of moves he needs to make so that in the remaining sequence all elements are different. In other words, find the length of the smallest prefix of the given sequence aa, after removing which all values in the sequence will be unique.

    Input

    The first line of the input contains a single integer tt (1≤t≤1041≤t≤104) — the number of test cases.

    Each test case consists of two lines.

    The first line contains an integer nn (1≤n≤2⋅1051≤n≤2⋅105) — the length of the given sequence aa.

    The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤n1≤ai≤n) — elements of the given sequence aa.

    It is guaranteed that the sum of nn values over all test cases does not exceed 2⋅1052⋅105.

    Output

    For each test case print your answer on a separate line — the minimum number of elements that must be removed from the beginning of the sequence so that all remaining elements are different.

    Example

    input

    Copy

     
    

    5

    4

    3 1 4 3

    5

    1 1 1 1 1

    1

    1

    6

    6 5 4 3 2 1

    7

    1 2 1 7 1 2 1

    output

    Copy

    1
    4
    0
    0
    5
    

    Note

    The following are the sequences that will remain after the removal of prefixes:

    • [1,4,3][1,4,3];
    • [1][1];
    • [1][1];
    • [6,5,4,3,2,1][6,5,4,3,2,1];
    • [2,1][2,1].

    It is easy to see that all the remaining sequences contain only distinct elements. In each test case, the shortest matching prefix was removed.

    解题说明:此题是确保数列中不同数字只出现一次,可以从末尾开始计算,找到第一次出现重复的,然后把该位置及其前面的全部删除即可。

    1. #include
    2. #include
    3. int a[200001];
    4. int t, n;
    5. int main()
    6. {
    7. int i, flag;
    8. scanf("%d", &t);
    9. while (t--)
    10. {
    11. flag = 0;
    12. int b[200001] = { 0 };
    13. scanf("%d", &n);
    14. for (i = 1; i <= n; i++)
    15. {
    16. scanf("%d", &a[i]);
    17. }
    18. for (i = n; i > 0; i--)
    19. {
    20. if (b[a[i]] == 0)
    21. {
    22. b[a[i]] = 1;
    23. }
    24. else
    25. {
    26. flag = i;
    27. break;
    28. }
    29. }
    30. printf("%d\n", flag);
    31. }
    32. return 0;
    33. }

  • 相关阅读:
    NeuroImage:通信辅助技术削弱了脑间同步?看来维系情感还得面对面互动才行...
    二轮平衡小车1:舵机与电机的基本控制
    在IDEA创建文件模板——以创建MyBatis的mapper.xml文件模板为例
    基于JAVA的新闻发布管理系统开发参考【数据库设计、源码、开题报告】
    AngelScript -- C++程序最好的脚本语言
    vscode使用remote-ssh连接以及连接失败的解决方法
    推荐系统最通俗介绍
    使用阿里云服务器,httplib库在listen过程中,出现Cannot assign requested address错误???
    【Javascript】在对象的方法里访问自己的属性
    商务部研究院信用所、启信宝联合发布《中国商务信用发展指数报告(2022)》
  • 原文地址:https://blog.csdn.net/jj12345jj198999/article/details/127136756
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号