You are given two strings s and t both of length n and both consisting of lowercase Latin letters.c++
In one move, you can choose any length len from 1 to n and perform the following operation:spa
Choose any contiguous substring of the string s of length len and reverse it;
at the same time choose any contiguous substring of the string t of length len and reverse it as well.
Note that during one move you reverse exactly one substring of the string s and exactly one substring of the string t.rest
Also note that borders of substrings you reverse in s and in t can be different, the only restriction is that you reverse the substrings of equal length. For example, if len=3 and n=5, you can reverse s[1…3] and t[3…5], s[2…4] and t[2…4], but not s[1…3] and t[1…2].code
Your task is to say if it is possible to make strings s and t equal after some (possibly, empty) sequence of moves.orm
You have to answer q independent test cases.ci
The first line of the input contains one integer q (1≤q≤104) — the number of test cases. Then q test cases follow.字符串
The first line of the test case contains one integer n (1≤n≤2⋅105) — the length of s and t.input
The second line of the test case contains one string s consisting of n lowercase Latin letters.string
The third line of the test case contains one string t consisting of n lowercase Latin letters.it
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 (∑n≤2⋅105).
For each test case, print the answer on it — "YES" (without quotes) if it is possible to make strings s and t equal after some (possibly, empty) sequence of moves and "NO" otherwise.
input
4
4
abcd
abdc
5
ababa
baaba
4
asdf
asdg
4
abcd
badc
output
NO
YES
NO
YES
如今給你兩個字符串,你能夠進行若干次操做。
每次操做須要在每一個字符串都選擇出長度爲len的一個區間,而後將這個區間的字符都進行翻轉。
問你進行若干次操做後,這倆字符串能變成同樣的嗎?
按照這個順序進行判斷:
第三個怎麼理解呢?在判斷1和2以後,咱們獲得的必定是一個排列,問題就變成你能夠翻轉若干次,兩個排列可否相同。
咱們考慮咱們同時翻轉相同長度的,咱們排列的逆必定會發生奇偶性的變化,那麼若是一開始奇偶性就不一樣,那麼無論怎麼翻轉,都不會相同。
#include<bits/stdc++.h> using namespace std; int n; string s1,s2,S1,S2; int Count(string s){ int num=0; for(int i=0;i<s.size();i++){ for(int j=0;j<i;j++){ if(s[j]>s[i]) num++; } } return num; } void solve(){ cin>>n>>S1>>S2; s1=S1;s2=S2; sort(s1.begin(),s1.end()); sort(s2.begin(),s2.end()); for(int i=0;i<n;i++){ if(s1[i]!=s2[i]){ puts("NO"); return; } } for(int i=1;i<n;i++){ if(s1[i]==s1[i-1]){ puts("YES"); return; } if(s2[i]==s2[i-1]){ puts("YES"); return; } } if(Count(S1)%2==Count(S2)%2){ puts("YES"); }else{ puts("NO"); } return; } int main(){ int t; scanf("%d",&t); while(t--)solve(); }