QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#264219#7738. Equivalent Rewritingucup-team087#AC ✓77ms18868kbC++2010.6kb2023-11-25 13:20:172023-11-25 13:20:17

Judging History

你现在查看的是最新测评结果

  • [2023-11-25 13:20:17]
  • 评测
  • 测评结果:AC
  • 用时:77ms
  • 内存:18868kb
  • [2023-11-25 13:20:17]
  • 提交

answer

#ifndef LOCAL
#pragma GCC optimize ("Ofast")
#pragma GCC optimize ("unroll-loops")
#endif

#include <bits/stdc++.h>
using namespace std;

using ll=long long;
#define int ll

#define rng(i,a,b) for(int i=int(a);i<int(b);i++)
#define rep(i,b) rng(i,0,b)
#define gnr(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define per(i,b) gnr(i,0,b)
#define pb push_back
#define eb emplace_back
#define a first
#define b second
#define bg begin()
#define ed end()
#define all(x) x.bg,x.ed
#define si(x) int(x.size())
#ifdef LOCAL
#define dmp(x) cerr<<__LINE__<<" "<<#x<<" "<<x<<endl
#else
#define dmp(x) void(0)
#endif

template<class t,class u> bool chmax(t&a,u b){if(a<b){a=b;return true;}else return false;}
template<class t,class u> bool chmin(t&a,u b){if(b<a){a=b;return true;}else return false;}

template<class t> using vc=vector<t>;
template<class t> using vvc=vc<vc<t>>;

using pi=pair<int,int>;
using vi=vc<int>;

template<class t,class u>
ostream& operator<<(ostream& os,const pair<t,u>& p){
	return os<<"{"<<p.a<<","<<p.b<<"}";
}

template<class t> ostream& operator<<(ostream& os,const vc<t>& v){
	os<<"{";
	for(auto e:v)os<<e<<",";
	return os<<"}";
}

#define mp make_pair
#define mt make_tuple
#define one(x) memset(x,-1,sizeof(x))
#define zero(x) memset(x,0,sizeof(x))
#ifdef LOCAL
void dmpr(ostream&os){os<<endl;}
template<class T,class... Args>
void dmpr(ostream&os,const T&t,const Args&... args){
	os<<t<<" ";
	dmpr(os,args...);
}
#define dmp2(...) dmpr(cerr,__LINE__,##__VA_ARGS__)
#else
#define dmp2(...) void(0)
#endif

using uint=unsigned;
using ull=unsigned long long;

template<class t,size_t n>
ostream& operator<<(ostream&os,const array<t,n>&a){
	return os<<vc<t>(all(a));
}

template<int i,class T>
void print_tuple(ostream&,const T&){
}

template<int i,class T,class H,class ...Args>
void print_tuple(ostream&os,const T&t){
	if(i)os<<",";
	os<<get<i>(t);
	print_tuple<i+1,T,Args...>(os,t);
}

template<class ...Args>
ostream& operator<<(ostream&os,const tuple<Args...>&t){
	os<<"{";
	print_tuple<0,tuple<Args...>,Args...>(os,t);
	return os<<"}";
}

ll read(){
	ll i;
	cin>>i;
	return i;
}

vi readvi(int n,int off=0){
	vi v(n);
	rep(i,n)v[i]=read()+off;
	return v;
}

pi readpi(int off=0){
	int a,b;cin>>a>>b;
	return pi(a+off,b+off);
}

template<class t>
void print_single(t x,int suc=1){
	cout<<x;
	if(suc==1)
		cout<<"\n";
	if(suc==2)
		cout<<" ";
}

template<class t,class u>
void print_single(const pair<t,u>&p,int suc=1){
	print_single(p.a,2);
	print_single(p.b,suc);
}

template<class T>
void print_single(const vector<T>&v,int suc=1){
	rep(i,v.size())
		print_single(v[i],i==int(v.size())-1?suc:2);
}

template<class T>
void print_offset(const vector<T>&v,ll off,int suc=1){
	rep(i,v.size())
		print_single(v[i]+off,i==int(v.size())-1?suc:2);
}

template<class T,size_t N>
void print_single(const array<T,N>&v,int suc=1){
	rep(i,N)
		print_single(v[i],i==int(N)-1?suc:2);
}

template<class T>
void print(const T&t){
	print_single(t);
}

template<class T,class ...Args>
void print(const T&t,const Args&...args){
	print_single(t,2);
	print(args...);
}

string readString(){
	string s;
	cin>>s;
	return s;
}

template<class T>
T sq(const T& t){
	return t*t;
}

void YES(bool ex=true){
	cout<<"YES\n";
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
void NO(bool ex=true){
	cout<<"NO\n";
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
void Yes(bool ex=true){
	cout<<"Yes\n";
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
void No(bool ex=true){
	cout<<"No\n";
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
//#define CAPITAL
/*
void yes(bool ex=true){
	#ifdef CAPITAL
	cout<<"YES"<<"\n";
	#else
	cout<<"Yes"<<"\n";
	#endif
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
void no(bool ex=true){
	#ifdef CAPITAL
	cout<<"NO"<<"\n";
	#else
	cout<<"No"<<"\n";
	#endif
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}*/
void possible(bool ex=true){
	#ifdef CAPITAL
	cout<<"POSSIBLE"<<"\n";
	#else
	cout<<"Possible"<<"\n";
	#endif
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}
void impossible(bool ex=true){
	#ifdef CAPITAL
	cout<<"IMPOSSIBLE"<<"\n";
	#else
	cout<<"Impossible"<<"\n";
	#endif
	if(ex)exit(0);
	#ifdef LOCAL
	cout.flush();
	#endif
}

constexpr ll ten(int n){
	return n==0?1:ten(n-1)*10;
}

const ll infLL=LLONG_MAX/3;

#ifdef int
const int inf=infLL;
#else
const int inf=INT_MAX/2-100;
#endif

int topbit(signed t){
	return t==0?-1:31-__builtin_clz(t);
}
int topbit(ll t){
	return t==0?-1:63-__builtin_clzll(t);
}
int topbit(ull t){
	return t==0?-1:63-__builtin_clzll(t);
}
int botbit(signed a){
	return a==0?32:__builtin_ctz(a);
}
int botbit(ll a){
	return a==0?64:__builtin_ctzll(a);
}
int botbit(ull a){
	return a==0?64:__builtin_ctzll(a);
}
int popcount(signed t){
	return __builtin_popcount(t);
}
int popcount(ll t){
	return __builtin_popcountll(t);
}
int popcount(ull t){
	return __builtin_popcountll(t);
}
int bitparity(ll t){
	return __builtin_parityll(t);
}
bool ispow2(int i){
	return i&&(i&-i)==i;
}
ll mask(int i){
	return (ll(1)<<i)-1;
}
ull umask(int i){
	return (ull(1)<<i)-1;
}
ll minp2(ll n){
	if(n<=1)return 1;
	else return ll(1)<<(topbit(n-1)+1);
}

bool inc(int a,int b,int c){
	return a<=b&&b<=c;
}

template<class t> void mkuni(vc<t>&v){
	sort(all(v));
	v.erase(unique(all(v)),v.ed);
}

ll rand_int(ll l, ll r) { //[l, r]
	//#ifdef LOCAL
	static mt19937_64 gen;
	/*#else
	static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count());
	#endif*/
	return uniform_int_distribution<ll>(l, r)(gen);
}

ll rand_int(ll k){ //[0,k)
	return rand_int(0,k-1);
}

template<class t>
void myshuffle(vc<t>&a){
	rep(i,si(a))swap(a[i],a[rand_int(0,i)]);
}

template<class t,class u>
int lwb(const vc<t>&v,const u&a){
	return lower_bound(all(v),a)-v.bg;
}
template<class t,class u>
bool bis(const vc<t>&v,const u&a){
	return binary_search(all(v),a);
}

vvc<int> readGraph(int n,int m){
	vvc<int> g(n);
	rep(i,m){
		int a,b;
		cin>>a>>b;
		//sc.read(a,b);
		a--;b--;
		g[a].pb(b);
		g[b].pb(a);
	}
	return g;
}

vvc<int> readTree(int n){
	return readGraph(n,n-1);
}

template<class t>
vc<t> presum(const vc<t>&a){
	vc<t> s(si(a)+1);
	rep(i,si(a))s[i+1]=s[i]+a[i];
	return s;
}
vc<ll> presum(const vi&a){
	vc<ll> s(si(a)+1);
	rep(i,si(a))s[i+1]=s[i]+a[i];
	return s;
}
//BIT で数列を管理するときに使う (CF850C)
template<class t>
vc<t> predif(vc<t> a){
	gnr(i,1,si(a))a[i]-=a[i-1];
	return a;
}
template<class t>
vvc<ll> imos(const vvc<t>&a){
	int n=si(a),m=si(a[0]);
	vvc<ll> b(n+1,vc<ll>(m+1));
	rep(i,n)rep(j,m)
		b[i+1][j+1]=b[i+1][j]+b[i][j+1]-b[i][j]+a[i][j];
	return b;
}

//verify してないや
void transvvc(int&n,int&m){
	swap(n,m);
}
template<class t,class... Args>
void transvvc(int&n,int&m,vvc<t>&a,Args&...args){
	assert(si(a)==n);
	vvc<t> b(m,vi(n));
	rep(i,n){
		assert(si(a[i])==m);
		rep(j,m)b[j][i]=a[i][j];
	}
	a.swap(b);
	transvvc(n,m,args...);
}
//CF854E
void rotvvc(int&n,int&m){
	swap(n,m);
}
template<class t,class... Args>
void rotvvc(int&n,int&m,vvc<t>&a,Args&...args){
	assert(si(a)==n);
	vvc<t> b(m,vi(n));
	rep(i,n){
		assert(si(a[i])==m);
		rep(j,m)b[m-1-j][i]=a[i][j];
	}
	a.swap(b);
	rotvvc(n,m,args...);
}

//ソートして i 番目が idx[i]
//CF850C
template<class t>
vi sortidx(const vc<t>&a){
	int n=si(a);
	vi idx(n);iota(all(idx),0);
	sort(all(idx),[&](int i,int j){return a[i]<a[j];});
	return idx;
}
//vs[i]=a[idx[i]]
//例えば sortidx で得た idx を使えば単にソート列になって返ってくる
//CF850C
template<class t>
vc<t> a_idx(const vc<t>&a,const vi&idx){
	int n=si(a);
	assert(si(idx)==n);
	vc<t> vs(n);
	rep(i,n)vs[i]=a[idx[i]];
	return vs;
}
//CF850C
vi invperm(const vi&p){
	int n=si(p);
	vi q(n);
	rep(i,n)q[p[i]]=i;
	return q;
}

template<class t,class s=t>
s SUM(const vc<t>&a){
	return accumulate(all(a),s(0));
}

template<class t>
t MAX(const vc<t>&a){
	return *max_element(all(a));
}

template<class t>
pair<t,int> MAXi(const vc<t>&a){
	auto itr=max_element(all(a));
	return mp(*itr,itr-a.bg);
}

template<class t>
t MIN(const vc<t>&a){
	return *min_element(all(a));
}

template<class t>
pair<t,int> MINi(const vc<t>&a){
	auto itr=min_element(all(a));
	return mp(*itr,itr-a.bg);
}

vi vid(int n){
	vi res(n);iota(all(res),0);
	return res;
}

template<class S>
void soin(S&s){
	sort(all(s));
}

template<class S,class F>
void soin(S&s,F&&f){
	sort(all(s),forward<F>(f));
}

template<class S>
S soout(S s){
	soin(s);
	return s;
}

template<class S>
void rein(S&s){
	reverse(all(s));
}

template<class S>
S reout(S s){
	rein(s);
	return s;
}

template<class t,class u>
pair<t,u>&operator+=(pair<t,u>&a,pair<t,u> b){
	a.a+=b.a;a.b+=b.b;return a;}
template<class t,class u>
pair<t,u>&operator-=(pair<t,u>&a,pair<t,u> b){
	a.a-=b.a;a.b-=b.b;return a;}
template<class t,class u>
pair<t,u> operator+(pair<t,u> a,pair<t,u> b){return mp(a.a+b.a,a.b+b.b);}
template<class t,class u>
pair<t,u> operator-(pair<t,u> a,pair<t,u> b){return mp(a.a-b.a,a.b-b.b);}

template<class t>
t gpp(vc<t>&vs){
	assert(si(vs));
	t res=move(vs.back());
	vs.pop_back();
	return res;
}

template<class t,class u>
void pb(vc<t>&a,const vc<u>&b){
	a.insert(a.ed,all(b));
}

template<class t,class...Args>
vc<t> cat(vc<t> a,Args&&...b){
	(pb(a,forward<Args>(b)),...);
	return a;
}

template<class t,class u>
vc<t>& operator+=(vc<t>&a,u x){
	for(auto&v:a)v+=x;
	return a;
}

template<class t,class u>
vc<t> operator+(vc<t> a,u x){
	return a+=x;
}

template<class t,class u>
vc<t>& operator-=(vc<t>&a,u x){
	for(auto&v:a)v-=x;
	return a;
}

template<class t,class u>
vc<t>& operator-(vc<t> a,u x){
	return a-=x;
}

template<class t,class u>
void remval(vc<t>&a,const u&v){
	a.erase(remove(all(a),v),a.ed);
}

template<class t,class u>
void fila(vc<t>&vs,const u&a){
	fill(all(vs),a);
}

bool dbg=false;

void slv(){
	int n,m;cin>>n>>m;
	vvc<int> b(n);
	rep(i,n){
		int k;cin>>k;
		b[i]=readvi(k,-1);
	}
	vi last(m,-1);
	per(i,n){
		bool ok=i<n-1;
		for(auto j:b[i]){
			if(last[j]==i+1){
				ok=false;
			}else if(last[j]==-1){
				last[j]=i;
			}
		}
		if(ok){
			vi ans=vid(n);
			swap(ans[i],ans[i+1]);
			Yes(0);
			print(ans+1);
			return;
		}
	}
	return No(0);
}

signed main(){
	cin.tie(0);
	ios::sync_with_stdio(0);
	cout<<fixed<<setprecision(20);
	
	if(dbg){
		while(1)slv();
	}else{
		int t;cin>>t;rep(_,t)
		slv();
	}
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3388kb

input:

3
3 6
3 3 1 5
2 5 3
2 2 6
2 3
3 1 3 2
2 3 1
1 3
2 2 1

output:

Yes
1 3 2
No
No

result:

ok OK. (3 test cases)

Test #2:

score: 0
Accepted
time: 1ms
memory: 3416kb

input:

1
10 5
2 2 4
4 1 3 4 2
1 2
3 2 1 4
4 5 2 4 3
3 2 5 4
3 5 4 2
3 1 3 2
5 1 4 2 3 5
1 4

output:

Yes
1 2 3 4 5 6 8 7 9 10

result:

ok OK. (1 test case)

Test #3:

score: 0
Accepted
time: 1ms
memory: 3448kb

input:

1
20 5
5 4 1 2 5 3
2 5 3
3 5 1 2
5 4 5 1 3 2
3 4 2 5
5 3 1 5 4 2
5 5 1 2 3 4
1 3
4 5 1 2 3
4 4 1 3 5
2 5 2
4 2 3 5 1
3 2 4 5
5 2 3 4 1 5
4 5 2 4 3
1 2
2 4 3
4 4 5 3 1
5 4 1 5 3 2
3 5 1 3

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 17 19 20

result:

ok OK. (1 test case)

Test #4:

score: 0
Accepted
time: 1ms
memory: 3512kb

input:

1
40 10
2 4 1
10 5 8 2 3 6 7 4 1 10 9
3 10 9 7
1 9
10 10 5 6 9 2 8 3 1 4 7
7 8 4 7 5 2 3 6
5 2 6 5 1 10
6 6 5 4 8 7 1
3 4 9 8
9 9 10 4 2 1 8 7 5 3
2 5 7
9 8 6 1 2 9 7 5 10 3
2 8 1
8 8 3 10 9 1 4 5 6
2 3 4
5 5 3 6 2 7
10 3 2 8 9 10 1 7 4 6 5
2 1 9
1 1
3 3 7 4
5 2 6 5 7 1
7 3 2 4 9 10 6 1
1 4
5 6 4 5 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 38 40

result:

ok OK. (1 test case)

Test #5:

score: 0
Accepted
time: 0ms
memory: 3400kb

input:

1
100 20
12 10 5 11 13 12 14 7 15 19 18 3 1
10 16 11 19 8 10 15 5 12 13 14
12 16 8 11 15 2 18 14 13 20 4 12 7
10 3 9 1 7 19 6 2 14 8 20
7 17 18 20 3 9 6 10
4 1 4 19 9
13 14 17 16 11 13 8 10 19 18 7 5 20 1
13 10 15 3 2 9 1 17 7 20 13 19 18 16
2 17 9
10 20 19 13 14 16 17 8 12 18 15
5 2 16 14 6 19
1 14...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 97 99 100

result:

ok OK. (1 test case)

Test #6:

score: 0
Accepted
time: 2ms
memory: 3808kb

input:

1
5000 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #7:

score: 0
Accepted
time: 19ms
memory: 7472kb

input:

1
5000 200
2 121 161
35 27 5 1 189 173 2 37 107 140 172 108 53 163 19 127 102 174 71 178 42 72 74 167 118 120 175 28 75 128 106 190 112 86 171 13
109 110 109 183 17 77 159 188 157 56 14 104 55 179 121 171 64 123 196 140 38 29 134 130 163 108 187 42 68 26 156 138 80 143 182 4 174 67 63 76 79 69 142 3...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #8:

score: 0
Accepted
time: 43ms
memory: 11444kb

input:

1
5000 1000
146 147 426 393 758 104 385 277 218 753 477 377 54 465 635 918 97 453 576 270 57 189 230 227 332 345 358 14 178 969 817 840 620 828 837 94 922 844 789 106 250 952 745 212 693 296 677 368 625 150 103 55 266 756 525 60 91 683 364 852 877 792 312 315 997 27 50 866 759 327 557 56 49 947 644 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #9:

score: 0
Accepted
time: 32ms
memory: 11444kb

input:

1
4999 1000
799 991 88 253 814 577 620 74 338 485 560 435 835 130 279 536 637 188 612 876 634 950 755 534 727 272 657 357 810 113 800 41 439 125 763 311 724 623 976 525 725 869 209 975 888 683 428 4 91 448 936 885 140 233 967 556 369 522 263 483 784 96 808 70 42 391 109 333 778 422 121 862 430 746 6...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #10:

score: 0
Accepted
time: 44ms
memory: 11436kb

input:

1
5000 5000
2081 3619 2779 2556 4025 163 2942 2539 4075 189 2823 2189 3571 1168 1474 3383 649 1432 2052 1218 645 1053 1833 2651 3651 1611 1512 1267 3727 4182 2237 4827 3905 3335 3268 1627 2212 3697 2241 884 4015 4902 1504 2223 484 3001 2908 4619 4321 2875 4501 87 2442 3850 2760 834 3985 1807 1880 26...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #11:

score: 0
Accepted
time: 39ms
memory: 11380kb

input:

1
1000 5000
2728 456 1809 201 2171 4389 1597 1911 2218 3081 3818 486 3732 263 2483 2923 527 867 782 3405 3803 4039 838 3743 3589 2153 2818 2946 997 11 899 2656 2024 4474 4802 2978 2070 3056 1919 2475 2205 2563 4339 3179 2508 195 3943 3710 4441 3440 3923 4842 3916 4481 912 3076 4866 710 254 4324 1546...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #12:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

1
10 5000
4665 1548 2583 767 790 1820 825 4120 4957 4179 3273 2273 4509 457 3495 667 206 1152 4353 1992 4211 315 4334 905 4043 2826 1094 1708 4132 1046 3359 137 3773 4602 4557 83 605 4257 3514 4430 4968 2253 3041 786 2356 320 1504 1734 4095 1738 2512 3667 140 1487 594 276 3290 4273 4321 87 3343 4451...

output:

Yes
1 2 4 3 5 6 7 8 9 10

result:

ok OK. (1 test case)

Test #13:

score: 0
Accepted
time: 30ms
memory: 11412kb

input:

1
4999 4999
1640 2673 1066 1994 4702 3817 839 2285 742 4086 1810 4349 4925 4974 4073 3186 3272 4258 893 3357 942 1513 1881 1371 2140 1512 4472 524 2119 3396 1236 4311 4605 1337 910 586 944 1016 4661 1041 2765 481 4021 4994 712 1233 3011 2070 123 356 2703 3891 2559 1158 640 1127 1488 2836 1912 3975 4...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #14:

score: 0
Accepted
time: 0ms
memory: 3428kb

input:

1
10 10
2 1 2
2 2 3
2 3 4
2 4 5
2 5 6
2 6 7
2 7 8
2 8 9
2 9 10
1 10

output:

No

result:

ok OK. (1 test case)

Test #15:

score: 0
Accepted
time: 12ms
memory: 10960kb

input:

1
100000 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #16:

score: 0
Accepted
time: 42ms
memory: 17812kb

input:

1
100000 100
30 31 100 5 89 85 53 86 19 62 20 57 81 3 60 82 32 64 27 63 1 94 17 22 8 33 12 23 88 2 11
94 95 89 78 8 74 31 36 5 41 98 99 32 53 88 33 87 40 83 70 21 35 51 81 92 3 37 90 62 1 46 29 20 85 75 65 82 91 22 97 61 12 27 26 77 18 68 15 79 28 84 58 49 54 6 66 59 72 45 17 80 48 34 4 96 19 57 94 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #17:

score: 0
Accepted
time: 46ms
memory: 18072kb

input:

1
100000 1000
53 469 776 408 563 495 552 288 343 745 650 179 791 839 389 881 474 194 27 739 795 103 143 522 261 197 123 923 355 731 154 412 231 600 641 651 247 668 877 535 908 792 90 578 827 841 486 901 402 761 356 433 798 369
526 710 298 313 926 775 961 979 45 549 214 81 805 635 174 930 687 243 619...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #18:

score: 0
Accepted
time: 46ms
memory: 18068kb

input:

1
100000 10000
2094 5226 2958 8712 7230 6625 2487 4520 9360 2727 5423 5170 3199 3725 2419 9194 1946 9942 7780 9861 692 2218 5879 9116 3253 1191 710 8703 759 3019 3581 3648 105 6123 8494 6356 8000 3056 4478 2646 7457 2437 9669 4132 4585 8874 2930 9024 6773 132 4309 6496 8138 3514 531 4782 5854 1722 5...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #19:

score: 0
Accepted
time: 56ms
memory: 18868kb

input:

1
100000 100000
13036 23902 71466 9482 98728 78471 22915 2470 5999 53211 25994 3996 11349 30511 56448 17277 78308 18316 42069 38636 63127 26256 63985 57249 58305 64366 17839 28518 18980 95945 36316 6076 69530 96509 6940 6039 56048 41847 82118 41054 49670 95896 45891 74636 90736 75413 27251 87730 683...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #20:

score: 0
Accepted
time: 1ms
memory: 3860kb

input:

1
5000 100
75 80 60 100 11 49 87 84 71 37 92 2 46 24 41 95 20 42 70 74 43 76 68 82 89 15 4 35 72 9 88 93 28 3 64 75 53 97 29 8 48 61 14 1 65 66 10 13 56 21 96 52 83 67 77 30 34 57 99 47 44 91 7 55 59 50 22 63 36 90 31 45 94 40 32 86
43 80 25 67 32 5 65 63 46 81 75 88 100 3 42 62 93 23 76 70 1 60 43 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #21:

score: 0
Accepted
time: 5ms
memory: 4368kb

input:

1
5000 1000
588 107 686 736 517 845 211 644 553 738 430 476 252 504 471 297 958 534 484 602 514 855 989 58 957 261 380 308 316 807 42 328 364 239 73 163 215 915 844 401 112 714 873 946 716 230 951 655 294 120 10 712 683 819 415 63 745 433 321 15 542 670 690 377 956 866 697 37 416 269 488 645 986 631...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #22:

score: 0
Accepted
time: 5ms
memory: 4368kb

input:

1
5000 10000
2844 3485 9550 710 9862 1742 4261 3401 7862 8774 2066 6172 4182 3952 8588 7798 4471 9240 8355 3687 1282 4605 5038 4511 6460 7072 8161 7977 8564 3062 4731 6511 7854 8039 3908 8061 3691 6049 5433 1876 2772 5197 1426 881 1294 7260 6082 6478 2157 1710 8281 487 9210 545 9888 3886 6834 8549 3...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #23:

score: 0
Accepted
time: 6ms
memory: 5028kb

input:

1
5000 100000
39293 10913 5181 19479 73743 73041 44034 79530 53967 42351 11365 1224 25452 97871 63229 80000 8498 27936 81102 81043 59677 93828 44118 63275 53964 66063 26803 73527 72659 38043 86078 59238 11483 36144 7084 20768 41417 61851 74604 18748 13113 32530 38112 32969 30342 70998 60607 33987 15...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #24:

score: 0
Accepted
time: 19ms
memory: 11724kb

input:

1
100000 100000
1 99697
2 99697 62499
2 62499 65369
2 65369 38767
2 38767 49004
2 49004 41714
2 41714 25240
2 25240 40929
2 40929 74271
2 74271 97963
2 97963 88205
2 88205 44238
2 44238 73947
2 73947 88038
2 88038 34453
2 34453 94958
2 94958 48075
2 48075 26199
2 26199 66549
2 66549 43887
2 43887 35...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #25:

score: 0
Accepted
time: 11ms
memory: 7780kb

input:

1
50000 100000
1 46703
2 46703 55497
2 55497 23493
2 23493 17355
2 17355 85641
2 85641 40451
2 40451 91219
2 91219 41048
2 41048 12518
2 12518 24389
2 24389 41038
2 41038 57974
2 57974 1865
2 1865 75723
2 75723 90283
2 90283 20878
2 20878 13239
2 13239 55992
2 55992 21622
2 21622 32181
2 32181 8511
...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #26:

score: 0
Accepted
time: 14ms
memory: 11200kb

input:

1
100000 50000
1 17436
2 17436 38563
2 38563 6072
2 6072 44215
2 44215 23698
2 23698 6361
2 6361 10273
2 10273 19571
2 19571 9471
2 9471 12671
2 12671 31584
2 31584 31896
2 31896 2213
2 2213 28535
2 28535 32050
2 32050 14148
2 14148 22955
2 22955 19097
2 19097 19557
2 19557 354
2 354 18536
2 18536 3...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #27:

score: 0
Accepted
time: 12ms
memory: 10884kb

input:

1
100000 10000
1 1670
2 1670 9903
2 9903 8088
2 8088 386
2 386 8535
2 8535 8326
2 8326 997
2 997 5841
2 5841 1028
2 1028 1627
2 1627 2622
2 2622 7211
2 7211 5508
2 5508 1647
2 1647 6224
2 6224 4630
2 4630 8145
2 8145 5415
2 5415 4098
2 4098 5354
2 5354 8742
2 8742 6205
2 6205 1258
2 1258 3625
2 3625...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #28:

score: 0
Accepted
time: 14ms
memory: 10964kb

input:

1
100000 9999
1 1714
2 1714 7447
2 7447 7246
2 7246 2788
2 2788 3876
2 3876 7970
2 7970 5074
2 5074 6179
2 6179 2036
2 2036 7908
2 7908 6148
2 6148 1571
2 1571 1333
2 1333 988
2 988 1311
2 1311 1045
2 1045 1352
2 1352 5177
2 5177 5601
2 5601 8933
2 8933 2175
2 2175 5244
2 5244 7087
2 7087 6886
2 688...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #29:

score: 0
Accepted
time: 6ms
memory: 6740kb

input:

1
50000 100000
1 25288
2 25288 60248
2 60248 40896
2 40896 3119
2 3119 15191
2 15191 20054
2 20054 37056
2 37056 48410
2 48410 15293
2 15293 6218
2 6218 62584
2 62584 59101
2 59101 67460
2 67460 78740
2 78740 67628
2 67628 45650
2 45650 10725
2 10725 74693
2 74693 81131
2 81131 41197
2 41197 59032
2...

output:

No

result:

ok OK. (1 test case)

Test #30:

score: 0
Accepted
time: 19ms
memory: 11212kb

input:

1
100000 50000
1 16235
2 16235 5024
2 5024 5075
2 5075 15612
2 15612 1874
2 1874 46975
2 46975 23015
2 23015 22230
2 22230 24685
2 24685 27514
2 27514 19421
2 19421 3372
2 3372 30435
2 30435 47871
2 47871 41270
2 41270 29787
2 29787 7743
2 7743 16624
2 16624 27627
2 27627 423
2 423 9245
2 9245 16307...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #31:

score: 0
Accepted
time: 8ms
memory: 10968kb

input:

1
100000 10000
1 1702
2 1702 2977
2 2977 6117
2 6117 3553
2 3553 5771
2 5771 8991
2 8991 6852
2 6852 1631
2 1631 7411
2 7411 9172
2 9172 3814
2 3814 7048
2 7048 4376
2 4376 7515
2 7515 6310
2 6310 8715
2 8715 6085
2 6085 5902
2 5902 175
2 175 1347
2 1347 8011
2 8011 3487
2 3487 7329
2 7329 936
2 936...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #32:

score: 0
Accepted
time: 13ms
memory: 10960kb

input:

1
100000 9999
1 269
2 269 4842
2 4842 9066
2 9066 6409
2 6409 919
2 919 4609
2 4609 2210
2 2210 9333
2 9333 1082
2 1082 419
2 419 1588
2 1588 4379
2 4379 9750
2 9750 5183
2 5183 5999
2 5999 4545
2 4545 9101
2 9101 377
2 377 451
2 451 8999
2 8999 726
2 726 7163
2 7163 6671
2 6671 4989
2 4989 7806
2 7...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (1 test case)

Test #33:

score: 0
Accepted
time: 18ms
memory: 9308kb

input:

1
100000 100000
1 40715
2 40715 69975
2 69975 81076
2 81076 50941
2 50941 61666
2 61666 58686
2 58686 77487
2 77487 43412
2 43412 11756
2 11756 38852
2 38852 25829
2 25829 14629
2 14629 40633
2 40633 79986
2 79986 7237
2 7237 95744
2 95744 98665
2 98665 75424
2 75424 75964
2 75964 99876
2 99876 3449...

output:

No

result:

ok OK. (1 test case)

Test #34:

score: 0
Accepted
time: 0ms
memory: 3384kb

input:

1
10 10
6 7 1 6 8 2 5
3 7 1 4
2 1 5
2 5 3
6 3 6 2 4 8 9
3 6 2 9
3 2 9 8
3 9 8 4
2 8 4
1 4

output:

No

result:

ok OK. (1 test case)

Test #35:

score: 0
Accepted
time: 0ms
memory: 3448kb

input:

1
5 10
8 8 10 5 7 6 3 1 4
4 1 6 5 7
5 7 6 1 10 3
5 6 3 10 9 1
2 3 1

output:

No

result:

ok OK. (1 test case)

Test #36:

score: 0
Accepted
time: 0ms
memory: 3384kb

input:

1
7 8
5 3 1 2 5 6
3 3 5 1
5 5 8 1 6 4
3 8 1 4
4 1 6 2 4
2 6 2
1 2

output:

No

result:

ok OK. (1 test case)

Test #37:

score: 0
Accepted
time: 5ms
memory: 4352kb

input:

1
2 100000
14270 46635 46698 1646 15716 2228 50409 74925 97781 74365 25891 12012 64493 21689 94826 36200 1632 24144 62892 32086 47204 79241 98139 79911 17992 46167 52734 60646 15562 38928 98569 3653 3671 78062 60439 55428 8130 90832 16564 66569 41939 90137 70795 10888 47855 26734 15687 58488 45392 1...

output:

No

result:

ok OK. (1 test case)

Test #38:

score: 0
Accepted
time: 3ms
memory: 4048kb

input:

1
1 100000
36897 18529 93504 47258 14497 23607 217 5522 37137 77238 60045 9885 11754 78586 36262 50169 94021 79684 70802 61672 70563 90359 26273 78607 54598 47388 39719 51290 60373 45630 10944 92439 87100 86543 99975 72598 87465 27042 92093 96656 71345 334 85993 31389 2345 23153 64562 93724 88845 65...

output:

No

result:

ok OK. (1 test case)

Test #39:

score: 0
Accepted
time: 0ms
memory: 3500kb

input:

1
3 3
2 1 3
2 1 2
3 1 2 3

output:

Yes
2 1 3

result:

ok OK. (1 test case)

Test #40:

score: 0
Accepted
time: 73ms
memory: 3456kb

input:

56035
9 9
7 1 7 3 6 8 4 2
2 8 4
3 6 3 5
3 6 7 2
7 5 3 9 1 2 8 4
6 8 9 7 3 1 6
8 3 4 9 5 1 6 7 8
5 9 8 7 5 1
2 3 2
9 4
1 4
4 3 2 4 1
3 2 3 1
1 1
1 3
3 3 4 1
3 3 2 1
4 3 1 4 2
3 3 4 1
4 10
8 2 7 3 6 1 9 8 5
5 6 4 8 7 5
3 2 8 6
6 3 4 1 8 2 5
10 10
4 3 8 1 2
3 2 9 10
3 1 7 9
6 9 7 10 3 4 8
10 9 3 5 10 8...

output:

Yes
1 2 3 4 5 6 7 9 8
Yes
1 2 3 4 5 7 6 8 9
No
Yes
1 2 3 4 5 6 8 7 9 10
Yes
1 2 3 4 5 7 6
Yes
1 2 3 5 4 6
No
Yes
1 2 3 5 4 6
No
No
Yes
1 2 3 4 5 7 6 8
Yes
2 1 3 4
Yes
1 2 3 5 4 6
Yes
1 2 3 4 5 7 6 8 9 10
Yes
1 3 2 4 5
No
Yes
2 1 3 4
No
Yes
2 1
No
Yes
1 2 3 5 4 6 7
Yes
1 2 4 3 5
No
Yes
1 2 3 4 5 7 6 ...

result:

ok OK. (56035 test cases)

Test #41:

score: 0
Accepted
time: 77ms
memory: 3388kb

input:

102767
1 9
1 1
2 9
4 6 9 4 1
9 1 6 9 2 5 4 7 8 3
5 8
6 1 7 8 4 6 5
8 1 3 2 4 8 6 7 5
4 7 3 8 6
4 1 6 3 4
1 1
1 10
3 9 4 5
2 1
1 1
1 1
4 6
2 2 5
1 5
4 4 1 5 2
2 5 3
3 8
5 5 8 1 6 4
2 3 2
1 7
2 8
4 3 5 8 2
7 4 7 5 8 2 1 6
2 5
4 3 2 5 1
1 2
5 2
1 2
2 2 1
2 2 1
2 2 1
2 2 1
5 5
2 5 4
3 2 5 1
5 3 1 2 4 5
...

output:

No
No
No
No
No
Yes
1 3 2 4
Yes
1 3 2
No
No
Yes
1 2 4 3 5
Yes
1 3 2 4 5
No
Yes
2 1 3
Yes
1 3 2 4
Yes
2 1 3 4
Yes
1 3 2 4 5
Yes
1 3 2 4 5
No
No
No
No
Yes
1 3 2 4
No
Yes
1 3 2 4
No
No
No
Yes
2 1 3 4
Yes
2 1 3
Yes
1 3 2 4
Yes
2 1 3 4
No
Yes
1 2 4 3
Yes
1 2 4 3
Yes
1 2 4 3 5
Yes
1 2 4 3 5
No
Yes
1 2 4 3
...

result:

ok OK. (102767 test cases)

Test #42:

score: 0
Accepted
time: 53ms
memory: 3440kb

input:

16732
16 2
2 1 2
1 1
2 1 2
1 1
1 1
2 2 1
1 1
2 2 1
1 2
1 1
2 2 1
2 1 2
1 1
2 1 2
2 2 1
1 1
4 4
1 1
3 3 4 1
2 2 1
3 4 3 2
10 7
5 2 6 1 5 3
3 5 3 1
4 7 2 6 3
1 4
1 1
3 3 7 4
6 6 3 4 2 1 5
1 4
1 2
7 5 3 1 7 4 6 2
14 5
2 3 2
5 3 2 5 4 1
1 2
5 3 4 1 5 2
3 2 1 4
1 2
2 4 3
2 1 4
1 3
5 4 2 1 3 5
1 1
5 3 4 1...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 14 13 15 16
Yes
2 1 3 4
Yes
1 2 3 4 5 6 7 9 8 10
Yes
1 2 3 4 5 6 7 8 9 10 11 13 12 14
Yes
2 1 3
Yes
1 2 3 4 5 6 7 9 8 10
Yes
1 2 3 4 5 6 7 9 8 10 11
Yes
1 2 3 4 5 6 7 8 10 9 11
Yes
1 2 3 4 5 6 7 9 8 10 11
Yes
1 2 3 4 5 6 8 7 9
Yes
1 2 4 3 5
Yes
1 2 3 4 5 6 7 8 9 10 12 ...

result:

ok OK. (16732 test cases)

Test #43:

score: 0
Accepted
time: 43ms
memory: 3492kb

input:

7315
5 32
4 13 30 31 4
8 12 1 11 10 27 19 5 15
12 7 29 3 2 4 25 30 22 10 19 15 8
14 31 16 21 18 22 3 32 20 17 19 12 2 25 8
23 8 30 11 17 19 26 22 21 28 13 14 2 25 16 9 3 6 18 7 29 5 32 31
11 21
12 11 7 9 14 8 3 10 1 16 2 19 20
14 16 13 1 17 21 19 12 9 6 5 8 14 10 2
6 13 3 9 20 11 4
1 11
14 9 7 6 16 ...

output:

Yes
1 2 4 3 5
Yes
1 2 3 4 5 6 7 9 8 10 11
Yes
1 2 3 5 4 6 7
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 16 18
Yes
1 2 3 4 5 6 7 8 9 10 11 13 12 14 15 16
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 16 18 19
No
Yes
1 2 3 4 5 6 8 7 9 10 11
No
Yes
1 2 3 4 6 5 7 8 9 10 11 12
No
Yes
1 2 3 4 5 6 7 8 10 9
Yes...

result:

ok OK. (7315 test cases)

Test #44:

score: 0
Accepted
time: 41ms
memory: 3448kb

input:

2985
6 14
4 11 12 9 8
14 9 2 14 4 7 8 1 10 12 13 6 5 3 11
9 4 2 1 5 9 3 6 14 7
11 4 7 1 3 13 6 11 14 9 10 2
9 2 12 10 11 7 13 5 3 6
3 4 14 2
12 8
2 8 4
6 4 5 8 7 2 1
8 5 3 8 1 2 7 6 4
2 5 8
4 7 8 3 1
1 2
5 1 6 5 3 8
5 7 1 5 8 4
2 7 3
2 3 6
5 2 7 5 6 1
1 3
13 38
32 9 14 37 28 35 38 16 36 13 30 26 23 ...

output:

Yes
1 3 2 4 5 6
Yes
1 2 3 4 5 6 7 8 9 10 12 11
Yes
1 2 3 4 5 6 7 8 10 9 11 12 13
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 39 41
Yes
1 2 3 4 6 5 7 8 9
Yes
2 1 3 4
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 15 14 16
Yes
1 3 2 4 5
Yes
1 2 3 ...

result:

ok OK. (2985 test cases)

Test #45:

score: 0
Accepted
time: 35ms
memory: 3508kb

input:

1500
15 61
17 17 12 11 52 16 21 26 33 14 28 48 58 29 25 5 56 15
35 4 27 61 26 33 46 40 36 10 11 16 55 48 1 47 34 44 58 12 30 23 43 21 15 35 38 5 8 60 42 54 20 53 7 13
12 59 14 39 33 10 32 40 15 24 54 28 47
9 52 9 6 2 33 17 8 1 37
38 19 52 2 9 38 17 50 48 59 55 61 30 11 23 46 57 40 53 43 3 37 7 25 4 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 13 12 14 15
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 40 42 43 44 45 46
Yes
1 2 3 4 6 5
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 23 25
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 15 14 1...

result:

ok OK. (1500 test cases)

Test #46:

score: 0
Accepted
time: 27ms
memory: 3556kb

input:

756
37 23
6 11 22 2 8 16 15
6 4 3 7 14 13 17
8 19 9 12 10 16 7 13 6
11 8 18 6 16 20 17 12 22 21 4 2
7 6 3 9 16 14 15 12
14 2 9 17 4 12 19 14 13 21 23 7 22 6 15
2 12 10
18 11 22 2 9 10 20 3 12 15 5 13 17 4 23 8 16 18 7
16 10 8 9 13 23 18 17 4 7 19 1 5 22 15 14 11
12 5 8 9 12 17 16 4 20 22 19 10 1
19 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 33 35 36 37
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 6...

result:

ok OK. (756 test cases)

Test #47:

score: 0
Accepted
time: 30ms
memory: 3964kb

input:

65
55 181
138 108 125 14 1 34 103 72 135 43 168 171 161 120 56 166 64 133 138 158 4 28 77 164 153 2 30 148 154 65 10 104 25 51 96 94 42 19 13 112 114 81 46 180 92 107 165 82 75 139 38 79 50 155 98 24 12 78 172 170 97 177 181 83 169 22 61 163 118 60 159 128 3 20 99 45 44 66 59 68 37 90 129 145 150 11...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 54
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 4...

result:

ok OK. (65 test cases)

Test #48:

score: 0
Accepted
time: 39ms
memory: 4356kb

input:

34
333 277
104 240 259 65 21 106 261 19 251 209 29 32 163 191 140 253 229 7 141 155 180 9 238 188 208 218 234 205 22 53 265 34 158 123 236 152 221 226 119 202 8 250 44 30 67 80 10 114 203 96 57 199 178 116 214 75 43 47 151 15 201 36 195 129 154 276 264 64 196 206 45 162 108 91 16 156 275 60 192 98 1...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (34 test cases)

Test #49:

score: 0
Accepted
time: 38ms
memory: 4288kb

input:

18
399 423
15 166 416 112 86 100 319 212 316 136 37 80 272 21 68 322
144 27 120 312 380 83 17 269 349 299 129 184 344 285 25 389 185 37 275 166 220 38 231 292 33 422 175 263 408 339 279 198 66 301 367 289 371 361 405 78 174 7 95 43 322 79 396 50 136 319 144 1 153 73 143 310 228 67 121 221 341 88 207...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (18 test cases)

Test #50:

score: 0
Accepted
time: 35ms
memory: 4484kb

input:

16
653 687
336 330 537 326 592 14 369 379 88 143 625 361 209 402 154 341 512 140 653 198 115 615 662 670 2 366 388 376 473 204 112 571 611 554 620 664 539 353 13 623 40 6 222 362 68 399 359 22 233 308 290 227 681 282 462 108 400 685 116 404 607 257 493 555 81 166 633 374 284 216 631 129 117 52 82 16...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (16 test cases)

Test #51:

score: 0
Accepted
time: 46ms
memory: 4672kb

input:

10
4875 1703
46 737 703 1287 18 917 557 308 337 792 1321 586 116 748 207 1466 1095 1256 905 1367 443 1529 1631 1455 593 1561 1573 573 1558 1215 1073 773 409 363 1190 1400 303 532 1366 12 1327 140 1121 739 504 955 309
642 660 1117 579 685 827 733 1555 604 257 203 1258 1667 856 1632 1648 180 148 1505 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (10 test cases)

Test #52:

score: 0
Accepted
time: 45ms
memory: 4736kb

input:

10
2152 6099
1928 1750 3647 1128 3244 4013 3109 3085 4874 4955 1610 5283 2927 3974 5812 1400 5920 109 1169 5972 400 2662 6017 354 2496 1660 3603 3958 4723 4742 4889 5306 3005 3738 471 1171 5128 328 3144 1534 5371 1389 2592 1552 1386 600 1559 4119 3360 3115 5436 4456 3924 5475 3446 636 6006 5497 2289...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (10 test cases)

Test #53:

score: 0
Accepted
time: 52ms
memory: 8260kb

input:

5
10715 32654
30104 21415 24927 2648 29574 9327 19845 9426 22207 17370 19583 31927 17767 3729 26014 4451 5276 23633 23705 8570 27864 6539 14128 24928 6945 2836 6333 22361 22233 3417 32495 14573 28993 24870 9151 11947 500 1727 24203 30633 30302 30205 3506 28499 22001 28589 29869 17244 11496 11527 104...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (5 test cases)

Test #54:

score: 0
Accepted
time: 63ms
memory: 10568kb

input:

4
30941 87231
3343 27768 54391 11968 86979 3800 81795 58116 58210 78629 7092 64236 45343 72255 32763 13727 58119 70974 19521 80401 48552 78749 84222 12034 48507 14718 58471 78049 80706 84779 42870 10315 41738 40658 4946 31382 25630 33946 22803 70310 1054 82067 44220 9141 71170 52255 32169 33800 5909...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (4 test cases)

Test #55:

score: 0
Accepted
time: 51ms
memory: 8588kb

input:

2
14273 44272
42092 32750 1668 11432 32582 39567 40611 6460 20864 3016 34614 38859 29060 24684 7745 18630 39267 43051 28477 18343 418 36149 18447 31083 14516 34366 42622 19114 6788 17704 15632 15015 23458 42632 16107 13765 619 27810 9377 35981 23711 43586 30644 36127 19176 22176 2131 21281 30064 297...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (2 test cases)

Test #56:

score: 0
Accepted
time: 47ms
memory: 5360kb

input:

16
4 82688
40860 74289 70231 26149 30387 28480 7496 37828 53107 52620 72708 63629 70195 19835 9845 32006 52366 79682 67856 41864 72043 45696 32818 74591 46712 10129 71894 46054 54411 19128 56285 42735 8339 15313 2956 17839 51950 61338 39438 76749 69621 34845 68085 5185 55398 53992 81389 47707 68127 ...

output:

No
No
Yes
1 2 3 4 5 7 6
No
No
Yes
1 2 3 4 5 6 7 9 8
No
No
No
No
No
No
No
No
No
Yes
1 2 3 4 6 5

result:

ok OK. (16 test cases)

Test #57:

score: 0
Accepted
time: 41ms
memory: 5100kb

input:

10
30 41566
40801 38376 39350 30151 24590 32182 6425 1890 19894 22784 4176 20714 14198 2763 21900 29813 33285 9186 11295 41276 16619 7275 22660 39631 8788 28683 6860 30889 34055 6136 34495 4985 1398 16196 38281 40241 25703 16025 89 41067 36920 34688 40035 35040 33137 23008 22065 8405 17791 11711 204...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 29
Yes
1 2 3 4 5 6 7 8 9 10 12 11
Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ...

result:

ok OK. (10 test cases)

Test #58:

score: 0
Accepted
time: 41ms
memory: 5700kb

input:

10
438 64754
48418 33529 51147 2711 31366 21917 16434 6565 63572 49088 8357 11713 7195 39221 49070 29977 22556 30987 27282 19855 25294 14918 56886 21014 17485 8219 29401 42353 30030 27776 47714 41685 17632 52754 5670 12307 8946 39256 49513 47678 36085 22350 5786 10874 6057 32338 46813 21957 34839 52...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (10 test cases)

Test #59:

score: 0
Accepted
time: 38ms
memory: 4824kb

input:

16
3258 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 1
1 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (16 test cases)

Test #60:

score: 0
Accepted
time: 64ms
memory: 4296kb

input:

67
7658 8
1 6
7 1 4 8 7 2 3 5
5 5 7 6 2 8
4 8 5 2 6
2 5 7
8 4 5 2 1 3 7 8 6
8 1 4 2 3 8 6 7 5
8 3 7 1 5 8 6 4 2
7 4 8 1 6 3 2 5
3 8 2 5
2 6 8
1 8
5 1 7 6 3 8
4 7 2 6 5
4 3 5 6 4
5 8 1 5 7 3
8 3 8 5 1 4 7 6 2
4 4 2 1 6
6 1 5 2 7 8 3
8 5 4 2 3 8 1 7 6
7 2 8 1 6 7 4 3
4 6 1 4 7
1 2
7 7 4 5 6 8 2 1
7 2 ...

output:

Yes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 ...

result:

ok OK. (67 test cases)

Extra Test:

score: 0
Extra Test Passed