zoukankan      html  css  js  c++  java
  • Codeforces Round #646 (Div. 2)

    题目链接:https://codeforces.com/contest/1363

    视频讲解链接:https://www.bilibili.com/video/BV1NC4y1a7si/(审核后可看)

    A. Odd Selection

    //
    //  main.cpp
    //  CF
    //
    //  Created by HanJinyu on 2020/5/15.
    //  Copyright © 2020 by HanJinyu. All rights reserved.
    //
    
    #include <stdio.h>
    #include <string.h>
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <list>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <time.h>
    using namespace std;
    typedef double db;
    typedef long long ll;
    const int maxn=2e5+10;
    int main()
    {
            #ifdef ONLINE_JUDGE
            #else
                freopen("in.txt","r",stdin);
            #endif
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int n,x;
            scanf("%d%d",&n,&x);
            int a[maxn];
            int _j=0,_o=0;
            for(int i=0;i<n;i++)
            {
                scanf("%d",a+i);
                if(a[i]&1)
                    _j++;
                else
                    _o++;
            }
    //        cout<<"ji="<<_j<<endl;
    //        cout<<"ou="<<_o<<endl;
            if(_j==0)
            {
                printf("No
    ");continue;
            }
            if(x%2==0)
            {
                bool flag=false;
                for(int i=1;i<=x;i++)
                {
                    if(i&1)
                    {
                        if((_j>=i&&_o>=x-i)||(_o>=i&&_j>=x-i))
                        {
                            flag=true;
                            break;
                        }
                    }
                }
                if(flag)
                    printf("Yes
    ");
                else
                    printf("No
    ");
            }
            else
            {
                if(_o>=x)
                    printf("Yes
    ");
                else if(_j%2==0&&_j+_o==x)
                    printf("No
    ");
                else{
                    bool flag=false;
                    for(int i=1;i<=x;i++)
                    {
                        if(i&1)
                        {
                            if((_j>=i&&_o>=x-i))
                            {
                                flag=true;
                                break;
                            }
                        }
                    }
                    if(flag)
                        printf("Yes
    ");
                    else
                        printf("No
    ");
                }
            }
        }
        return 0;
    }
    View Code

    B.Subsequence Hate

    //-------------------------------------------------
    //Created by HanJinyu
    //Created Time :三  5/20 12:29:04 2020
    //File Name :question.cpp
    //-------------------------------------------------
    
    #include <stdio.h>
    #include <string.h>
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <list>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <time.h>
    using namespace std;
    typedef double db;
    typedef long long ll;
    const int maxn = 2e5+10;
    #define maxn 0x3f3f3f3f
    int main()
    {
        #ifdef ONLINE_JUDGE
        #else
        freopen("in.txt","r",stdin);
        #endif
        int t;
        scanf("%d",&t);
        while(t--)
        {
            char str[1111];
            scanf("%s",str);
            int len=strlen(str);
            if(len<=2)
                printf("0
    ");
            else{
                int ans=2000;
                for(int i=0;i<len;i++)
                {
                    int left=0;
                    for(int j=0;j<i;j++)
                    {
                        if(str[j]=='1')
                            left++;
                    }
                    for(int j=i;j<len;j++)
                    {
                        if(str[j]=='0')
                            left++;
                    }
                    ans=min(ans,left);
                }
                for(int i=0;i<len;i++)
                {
                    int right=0;
                    for(int j=0;j<i;j++)
                    {
                        if(str[j]=='0')
                            right++;
                    }
                    for(int j=i;j<len;j++)
                    {
                        if(str[j]=='1')
                            right++;
                    }
                    ans=min(ans,right);
                }
                printf("%d
    ",ans);
            }
        }
         return 0;
    }
    View Code

    C.Game On Leaves

    #include <stdio.h>
    #include <string.h>
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <list>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <time.h>
    using namespace std;
    typedef double db;
    typedef long long ll;
    const int maxn = 2e5+10;
    #define maxn 0x3f3f3f3f
    int main()
    {
        #ifdef ONLINE_JUDGE
        #else
        freopen("in.txt","r",stdin);
        #endif
        int t;
        scanf("%d",&t);
        while(t--)
        {
            int n,x;
            scanf("%d%d",&n,&x);
            int u,v;
            vector<int>vv[2000];
            for(int i=0;i<n-1;i++)
            {
                scanf("%d%d",&u,&v);
                vv[u].push_back(v);
                vv[v].push_back(u);
            }
            if(n==1)
            {
                printf("Ayush
    ");continue;
            }
            if(vv[x].size()<=1)
            {
                printf("Ayush
    ");continue;
            }
            if(n&1)
            {
                printf("Ashish
    ");
            }
            else
                printf("Ayush
    ");
           
        }
        return 0;
    }
    View Code
  • 相关阅读:
    shiro 权限集成Ehcache 配置 学习记录(二)
    shiro 集成spring 配置 学习记录(一)
    无网线的情况下,虚拟机和主机通信
    activeMQ集群搭建及高可用
    spring集成activeMQ
    ActiveMQ的两种消息模式,主题、队列
    Weblogic10.3.6部署解决CXF webService 调用报错: “Cannot create a secure XMLInputFactory”
    静态代理和动态代理对比
    Java中的静态代理实现方式
    PHP求解一个值是否为质数
  • 原文地址:https://www.cnblogs.com/Vampire6/p/13023548.html
Copyright © 2011-2022 走看看