uva 10763 - Foreign Exchange

简介: 点击打开链接uva 10763 代码: /*只要对两个数组排序,然后比对完全相同就是YES,否则NO*/#include #include #include #include #include #include #...

点击打开链接uva 10763


代码:

/*
只要对两个数组排序,然后比对完全相同就是YES,否则NO
*/
#include <algorithm>
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include <cstdio>
#include <stack>
#include <queue>
#include <cmath>
#include <set>
using namespace std;
#define MAXN 500010

int n , flag;
int loc[MAXN] , res[MAXN];

int solve(){
    sort(loc , loc+n);
    sort(res , res+n);
    for(int i = 0 ; i < n ; i++){
        if(loc[i] != res[i]) return 0;
    }    
    return 1;
}

int main(){
    //freopen("input.txt" , "r" , stdin);
    while(scanf("%d" , &n) && n){
        for(int i = 0 ; i < n ; i++)
            scanf("%d%d" , &loc[i] , &res[i]);
        flag = solve();
        if(flag) printf("YES\n");
        else printf("NO\n");
    }
    return 0;
}


目录
相关文章
遇到Error saving license data.C:\Users|yyh\idea.key(拒绝访问。) CORP\AppDatalRoamingVetBrainslIntellilldea20的解决思路
今日进行云桌面迁移后,发现已激活的IDEA软件失效,并且每次启动都需要重新激活,极为不便。经过一番调查与尝试多种解决方案后,最终通过第4种方法解决了问题:先进入特定设置界面移除原有激活信息,再重新输入激活码完成激活过程,从而确保下次启动不再需要重复激活步骤。
uva540 team queue
uva540 team queue
38 0
|
6月前
|
算法 安全 C++
【C++14算法】exchange和quoted
【C++14算法】exchange和quoted
222 0
uva10035 Primary Arithmetic
uva10035 Primary Arithmetic
32 0
|
安全 Java fastjson
Ichunqiu云境 —— Exchange Writeup
1. OSCP 渗透风格,脱离C2和MSF之类的工具 2. Box 难度不高
SAP WM初阶LQ02报错 - Movement Type 901 for manual transfer orders does not exist -
SAP WM初阶LQ02报错 - Movement Type 901 for manual transfer orders does not exist -
SAP WM初阶LQ02报错 - Movement Type 901 for manual transfer orders does not exist -
|
机器学习/深度学习 算法