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

codeforce 755 B

时间:2018-08-28 23:46:48      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:std   const   class   sort   har   ORC   uri   names   ring   

代码来自tourist,先码
http://codeforces.com/contest/755/problem/B

#include <bits/stdc++.h>

using namespace std;

const int N = 1234567;

string a[N];

char foo[N];

void get(string &s) 
{
    scanf("%s", foo);
    s = "";
    for (int j = 0; foo[j]; j++) 
        s += foo[j];
}

int main() 
{
    int n, m;
    scanf("%d %d", &n, &m);
    for (int i = 0; i < n + m; i++) 
    get(a[i]);

    sort(a, a + n + m);
    int common = 0;
    for (int i = 0; i < n + m - 1; i++) 
    {
        if (a[i] == a[i + 1]) 
        common++;
    }

    n -= common;
    m -= common;

    for (int it = 0; ; it++) 
    {
        if (it % 2 == 0) 
        {
            if (common > 0) 
                common--; 
            else if (n > 0)
                n--; 
            else 
            {
                puts("NO");
                break;
            }
            } 
        else 
        {
            if (common > 0) 
                common--; 
            else if (m > 0) 
                m--; 
            else 
            {
                puts("YES");
                break;
            }
        }
    }
    return 0;
}

codeforce 755 B

标签:std   const   class   sort   har   ORC   uri   names   ring   

原文地址:https://www.cnblogs.com/ronnielee/p/9551430.html

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