結果

問題 No.1779 Magical Swap
ユーザー 蜜蜂蜜蜂
提出日時 2021-12-08 00:47:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,355 bytes
コンパイル時間 4,193 ms
コンパイル使用メモリ 239,520 KB
実行使用メモリ 11,940 KB
最終ジャッジ日時 2024-07-16 07:38:25
合計ジャッジ時間 5,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 32 ms
7,296 KB
testcase_05 AC 16 ms
6,944 KB
testcase_06 AC 16 ms
6,944 KB
testcase_07 AC 27 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 21 ms
6,940 KB
testcase_10 AC 102 ms
11,428 KB
testcase_11 AC 48 ms
7,372 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 AC 79 ms
9,464 KB
testcase_14 AC 115 ms
11,940 KB
testcase_15 AC 65 ms
6,944 KB
testcase_16 AC 37 ms
7,936 KB
testcase_17 AC 53 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//g++ 1.cpp -std=c++14 -O2 -I .
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using ll = long long;
using ld = long double;

using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vld = vector<ld>;
using vvld = vector<vld>;

#define fi first
#define se second
#define pb push_back
#define pq_big(T) priority_queue<T,vector<T>,less<T>>
#define pq_small(T) priority_queue<T,vector<T>,greater<T>>
#define all(a) a.begin(),a.end()
#define rep(i,start,end) for(ll i=start;i<(ll)(end);i++)
#define per(i,start,end) for(ll i=start;i>=(ll)(end);i--)
#define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())

void solve(){
  int n;
  cin>>n;

  vi a(n+1,0),b(n+1,0);
  rep(i,1,n+1){
    cin>>a[i];
  }
  rep(i,1,n+1){
    cin>>b[i];
  }

  dsu d(n+1);
  rep(k,2,n+1){
    rep(i,2,n+1){
      if(k*i>n){
        break;
      }
      if(d.same(k,k*i)==false){
        d.merge(k,k*i);
      }
    }
  }

  auto g=d.groups();

  for(auto x:g){
    map<int,int> cnt;
    for(auto v:x){
      cnt[a[v]]++;
    }
    for(auto v:x){
      if(cnt[b[v]]<=0){
        cout<<"No\n";
        return;
      }
      cnt[b[v]]--;
    }
  }

  cout<<"Yes\n";
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int t;
  cin>>t;

  while(t--){
    solve();
  }
}
0