Good Bye 2019 A. Card Game
Posted wyh447154317
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Good Bye 2019 A. Card Game相关的知识,希望对你有一定的参考价值。
第一次五分钟过了cf A
https://codeforces.com/contest/1270/problem/A
思路:谁拿到最大的牌即赢
官方:
#include<bits/stdc++.h> #define ll long long using namespace std; const int N= 105 ; int a[N],b[N]; int main(){ int T; ios::sync_with_stdio(false);cin.tie(0); cin>>T; while(T--){ int n,k1,k2,flag=0; cin>>n>>k1>>k2; for(int i=0;i<k1;i++) {cin>>a[i]; if(a[i]==n)flag=1; } for(int i=0;i<k2;i++)cin>>b[i]; if(flag)cout<<"YES"<<endl; else cout<<"NO"<<endl; } return 0; }
以上是关于Good Bye 2019 A. Card Game的主要内容,如果未能解决你的问题,请参考以下文章