6.9 VJ D - CopyCopyCopyCopyCopy

#include<bits/stdc++.h>
#define ll long long
#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
/*
题意:一个长度为n的数组A,将n个这个数组连接起来成为B,求通过删除多个(可能是零或全部)B中的元素,所得最长递增子序列的长度。
数组链接和删除元素后一定会存在一个包含A中所有元素的递增子序列,因为链接了n个。
因此只要统计出现了几种数
*/
map<ll,ll>m;
int main()
{
    speed_up;
    int t;
    cin>>t;
    while(t--)
    {
        int n,a;
        cin>>n;
        m.clear();
        for(int i=0;i<n;i++)
        {
            cin>>a;
            if(!m[a])m[a]=1;
        }
        cout<<m.size()<<endl;
    }     return 0;
}  
上一篇:Python实现中英互译


下一篇:pandas众数mode()