摘要: void lisan(int *a,int n) { vector<int> t(n); for(int i=0;i<n;i++) t[i]=a[i]; sort(t.begin(), t.end()); int len=unique(t.begin(), t.end())-t.begin(); f 阅读全文
posted @ 2020-02-24 23:48 Faker_fan 阅读(255) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.com.cn/problem/P1903#submit #include <iostream> #include <cstring> #include <cstdio> #include <algorithm> #include <cmath> #include 阅读全文
posted @ 2020-02-24 23:35 Faker_fan 阅读(141) 评论(0) 推荐(0) 编辑