码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 101487E - Enter The Dragon

时间:2017-10-14 21:20:49      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:chm   mil   tor   第一个   const   include   pac   bool   iterator   

101487E - Enter The Dragon

思路:做的时候两个地方理解错了,第一个事我以为龙吸了水,水就干了,其实龙是在下雨之前吸的,下雨时湖水又满了,所以湖水永远不会干;第二个是以为只要找前面一段没下雨的天吸水就可以了,其实是上一次满了之后没下雨的天吸水都可以。

代码:

 

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))

const int N=1e6+5;
set<int>s;
int a[N];
int ans[N];
int pre_full_pos[N];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t,n,m;
    cin>>t;
    while(t--)
    {
        cin>>n>>m;
        for(int i=0;i<m;i++)cin>>a[i];
        s.clear();
        mem(pre_full_pos,0);
        mem(ans,0);
        bool flag=false;
        for(int i=0;i<m&&!flag;i++)
        {
            if(a[i])
            {
                set<int>::iterator it=s.lower_bound(pre_full_pos[a[i]]);
                if(it!=s.end())
                {
                    ans[*it]=a[i];
                    s.erase(it);
                    pre_full_pos[a[i]]=i;
                }
                else flag=true;
            }
            else s.insert(i); 
        }
        if(flag){
            cout<<"NO"<<endl;
            continue;
        }
        cout<<"YES"<<endl;
        for(int i=0;i<m;i++)if(!a[i])cout<<ans[i]<< ;
        cout<<endl; 
    }
    return 0;
}
/*
10
4 10
0 0 3 4 0 0 1 0 4 3 
*/

 

Codeforces 101487E - Enter The Dragon

标签:chm   mil   tor   第一个   const   include   pac   bool   iterator   

原文地址:http://www.cnblogs.com/widsom/p/7668341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!