結果
| 問題 | No.1707 Simple Range Reverse Problem |
| コンテスト | |
| ユーザー |
houren
|
| 提出日時 | 2021-10-15 21:46:26 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 693 bytes |
| 記録 | |
| コンパイル時間 | 1,598 ms |
| コンパイル使用メモリ | 172,840 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-17 17:23:04 |
| 合計ジャッジ時間 | 2,096 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 WA * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll MOD = 1000000007;
using P = pair<int,int>;
#define rep(i, n) for(int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
int main(){
int t;
cin >> t;
rep(i,t){
int n;
bool ans = true;
cin >> n;
vector<int> a(2*n);
vector<vector<int>> ad(n);
rep(j,2*n){
cin >> a[j];
ad[a[j]-1].push_back(j);
if(ad[a[j]-1].size()>2) ans = false;
}
rep(j,n){
if(ad[j][1] - ad[j][0] == 1) ans = false;
}
if(ans) cout << "Yes" << endl;
else cout << "No" << endl;
}
return 0;
}
houren