2016ACM省赛 ProblemC 不同的衣服

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016ACM省赛 ProblemC 不同的衣服相关的知识,希望对你有一定的参考价值。

 1 #include<iostream>
 2 #include<set>
 3 using namespace std;
 4 int main()
 5 {
 6     set<int> s;
 7     int n;
 8     while(cin>>n)
 9     {
10     int k;
11     while(n--)
12     {
13         cin>>k;
14     s.insert(k);
15     }
16     cout<<s.size()<<endl;
17     s.clear();
18     }
19     return 0;
20 }

 

以上是关于2016ACM省赛 ProblemC 不同的衣服的主要内容,如果未能解决你的问题,请参考以下文章

记2016商大ACM省赛

山东省2016acm省赛

2016ACM省赛 ProblemD 猜字迷

2016acm山东省省赛感悟

2017师大省赛总结

湖南省2016省赛题。1809: Parenthesis 线段树