首页 > 代码库 > B - Ignatius and the Princess IV DP
B - Ignatius and the Princess IV DP
#include<iostream> #include<vector> using namespace std; int cnt[999999]; int main() { int time,n,limit; vector<int> been; while(cin>>time) { int a = 1; memset(cnt,0,sizeof(cnt)); limit = (time+1)/2; while(time--) { cin>>n; cnt[n]++; if(cnt[n]>=limit&&a) { cout<<n<<endl; a=0; } } } }
普通cnt数组
DP版本:
include<stdio.h> #include<string.h> #include<math.h> int main() { _int64 n,a; while(scanf("%I64d",&n)!=EOF) { _int64 b=0,c; while(n--) { scanf("%I64d",&a); if(b==0) { c=a; b++; } else { if(c==a) b++; else b--; } } printf("%I64d\n",c); } return 0;
B - Ignatius and the Princess IV DP
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。