zoukankan      html  css  js  c++  java
  • 【Codeforces Round #450 (Div. 2) C】Remove Extra One

    【链接】 我是链接,点我呀:)
    【题意】

    在这里输入题意

    【题解】

    枚举删除第i个数字。 想想删掉这个数字后会有什么影响? 首先,如果a[i]如果是a[1..i]中最大的数字 那么record会减少1. 其次。 对于任意一个a[j],且i则我们可以预处理一下。
    遍历a
    对于a[i]
    看看它是不是a[1..i]中第二小的数字。
    那么标记cnt[a[1..i]中最大的数字]++;

    然后再重新遍历一遍a;
    对于a[i]
    还是看它是不是a[1..i]中第二小的数字。
    如果是的话,标记cnt[a[1..i]中最大的数字]--;
    同时temp = cnt[a[i]] - (a[i]==max{a[1..i]}?1:0);
    这里的temp就是去掉数字a[i]后,record的变化量.

    取temp最大的a[i]就好

    【代码】

    /*
      	1.Shoud it use long long ?
      	2.Have you ever test several sample(at least therr) yourself?
      	3.Can you promise that the solution is right? At least,the main ideal
      	4.use the puts("") or putchar() or printf and such things?
      	5.init the used array or any value?
      	6.use error MAX_VALUE?
      	7.use scanf instead of cin/cout?
      	8.whatch out the detail input require
    */
    #include <bits/stdc++.h>
    using namespace std;
    
    const int N = 1e5;
    
    map<int,int> dic;
    int n,a[N+10],ma[N+10],ma2[N+10];
    
    int main(){
    	#ifdef LOCAL_DEFINE
    	    freopen("F:\c++source\rush_in.txt", "r", stdin);
    	#endif
    	ios::sync_with_stdio(0),cin.tie(0);
    	cin >> n;
    	for (int i = 1;i <= n;i++) cin >> a[i];
    	ma[1] = a[1];
    	ma2[1] = -1;
    	for (int i = 2;i <= n;i++){
    		if (a[i]>ma[i-1]){
    			ma2[i] = ma[i-1];
    		 	ma[i] = a[i];
    		}else{
    			ma[i] = ma[i-1];
    		 	if (ma2[i-1]<a[i]){
    		 	 	ma2[i] = a[i];
    		 	}else ma2[i] = ma2[i-1];
    		}
    		if (a[i]!=ma[i] && a[i]==ma2[i]){
    		 	dic[ma[i]]++;
    		}
    	}
    
    	int tot = -1e6,idx = -1;
    	for (int i = 1;i <= n;i++){
    		if (a[i]!=ma[i] && a[i]==ma2[i]) dic[ma[i]]--;
    		int temp = dic[a[i]];
    		if (a[i]==ma[i]) temp--;
    	 	if (temp>tot){
    	 	 	tot = temp;
    	 	 	idx = a[i];
    	 	}else if (temp==tot){
    	 	 	idx = min(idx,a[i]);
    	 	}
    	}
    
    	cout << idx << endl;
    	return 0;
    }
    
  • 相关阅读:
    用Doxygen生成X3D的继承关系树
    FreeBSD 8.0候选版本RC2发布
    Mozilla Firefox, Apple Safari,Chrome等主流浏览器均开始WebGL支持
    关于企业管理信息系统
    [转]WebGL标准最新进展
    C++ + Irrlicht整一个东东?
    FreeWRL Windows Beta版本注记
    选择C++开发环境
    老人与老浏览器-李开复与成熟度最高的VRML浏览器SGI Cosmo
    WebGL概念及HTML5推广给X3D规范带来的新出路
  • 原文地址:https://www.cnblogs.com/AWCXV/p/8026066.html
Copyright © 2011-2022 走看看