航电oj1029
Posted glodears
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了航电oj1029相关的知识,希望对你有一定的参考价值。
学习了https://www.cnblogs.com/xiaozou-zone/p/11127918.html,比我原来开数组1000000妙多了。
#include <iostream> using namespace std; int main() { int n,counter=0,a,t; while(cin>>n) { counter=0; while(n--) { cin>>t; if(counter==0) { a=t; counter=1; } else { if(a==t)counter++; else counter--; } } cout<<a<<endl; } return 0; }
以上是关于航电oj1029的主要内容,如果未能解决你的问题,请参考以下文章
Light OJ 1029- Civil and Evil Engineer (图论-最小生成树)