ZOJ 3776: Pokemon Master

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3776: Pokemon Master相关的知识,希望对你有一定的参考价值。

ZOJ - 3776

 

///@author Sycamore, ZJNU
///@submitted_on 2017 - 01 - 17
///
#include<iostream>
using namespace std;
int main()
{
    int T;
    cin >> T;
    while (T--)
    {
        int N, M, w1 = 0, w2 = 0, t;
        cin >> N >> M;
        while (N--)
        {
            cin >> t;
            w1 += t;
        }
        while (M--)
        {
            cin >> t;
            w2 += t;
        }
        if (w1 > w2)cout << "Calem" << endl;
        else if (w2 > w1)cout << "Serena" << endl;
        else cout << "Draw" << endl;
    }
    return 0;
}

 

以上是关于ZOJ 3776: Pokemon Master的主要内容,如果未能解决你的问题,请参考以下文章

Luogu 2444 [POI2000]病毒 & Zoj 3784

[模拟] aw3776. 水果拼盘(模拟+CF1271A)

Wikioi 3776 生活大爆炸版石头剪子布

题解 ZOJ3203 Light Bulb

ZOJ 4712: Modular Inverse

...this.props.pokemon 的目的是啥,它与 this.props.pokemon 有何不同 [重复]