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 不同的衣服的主要内容,如果未能解决你的问题,请参考以下文章