欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

A. Common Subsequence ( Codeforces Round #658 (Div. 2))

程序员文章站 2022-04-30 22:48:32
...

A. Common Subsequence ( Codeforces Round #658 (Div. 2))
A. Common Subsequence ( Codeforces Round #658 (Div. 2))
思路:这道题就是给你两个数组a和b,你要去找b中的元素是否在a中存在。所以我们直接用到了map<int,int>mp。

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int t; cin>>t;
    while(t--){
        int ans = -1;
        int a,b,n,m;
        map<int,int>mp;
        cin>>n>>m;
        for(int i=0;i<n;i++){
            cin>>a; mp[a]++;
        }
        for(int i=0;i<m;i++){
            cin>>b;
            if(mp[b]>0){
                ans = b ;
            }
        }
        if(ans == -1) cout<<"NO"<<endl;
        else {
            { cout<<"YES"<<endl<<1<<' '<<ans<<endl;}
        }
    }
    return 0;
}

python写法:

for _ in range(int(input())):
    n,m = map(int,input().split())
    lis1 =   list(map(int,input().split()))
    lis2 =   list(map(int,input().split()))
    check = 0
    ans=1
    for i in lis1:
        if i in lis2:
            check =1
            ans=i
            break
    if check == 1:
        print ("YES")
        print (1,ans)
    else:
        print ("NO")
相关标签: cf