Time Limit: 1000 ms Memory Limit: 65536 KiB
Problem Description
给定2 个集合S和T,试设计一个判定S和T是否相等的蒙特卡罗算法。
设计一个拉斯维加斯算法,对于给定的集合S和T,判定其是否相等。
Input
输入数据的第一行有1 个正整数n(n≤10000),表示集合的大小。接下来的2行,每行有n个正整数,分别表示集合S和T中的元素。
Output
将计算结论输出。集合S和T相等则输出YES,否则输出NO。
Sample Input
3
2 3 7
7 2 3
Sample Output
YES
Hint
Source
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner ss = new Scanner(System.in);
int n = ss.nextInt();
ArrayList<Integer> sn = new ArrayList<Integer>();
ArrayList<Integer> sm = new ArrayList<Integer>();
for (int i = 0; i < n; i++) {
int tp = ss.nextInt();
sn.add(tp);
}
for (int i = 0; i < n; i++) {
int tp = ss.nextInt();
sm.add(tp);
}
if(sn.size() == sm.size() && sn.containsAll(sm)) {
System.out.println("YES");
}else {
System.out.println("NO");
}
ss.close();
}
}