QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#318276#7999. 拉丁方rageOfThunder100 ✓2075ms38276kbC++205.1kb2024-01-30 21:47:542024-01-30 21:47:54

Judging History

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

  • [2024-01-30 21:47:54]
  • 评测
  • 测评结果:100
  • 用时:2075ms
  • 内存:38276kb
  • [2024-01-30 21:47:54]
  • 提交

answer

#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops")
// MagicDark
#include <bits/stdc++.h>
#define debug cerr << "[" << __LINE__ << "] "
#define SZ(x) (int) x.size() - 1
#define all(x) x.begin(), x.end()
#define ms(x, y) memset(x, y, sizeof x)
#define F(i, x, y) for (int i = (x); i <= (y); i++)
#define DF(i, x, y) for (int i = (x); i >= (y); i--)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
template <typename T> inline void chkmax(T &x, T y) {x = max(x, y);}
template <typename T> inline void chkmin(T &x, T y) {x = min(x, y);}
template <typename T> inline void read(T &x) {
	x = 0; int f = 1; char c = getchar();
	for (; !isdigit(c); c = getchar()) if (c == '-') f = -f;
	for (; isdigit(c); c = getchar()) x = (x << 1) + (x << 3) + (c ^ 48);
	x *= f;
}
const int N = 510;
int n, r, c, a[N][N], cnt[N], id[N];//, res[N][N];
bool vis[N * N];
vector <int> cir;
vector <vector <int>> res;
vector <pair <int, int>> g[N * 2];
void euler(int x) {
	// debug << x << endl;
	while (g[x].size()) {
		auto [y, id] = g[x].back(); g[x].pop_back();
		if (vis[id]) continue;
		vis[id] = true;
		euler(y);
		cir.push_back(id);
	}
}
pair <vector <vector <int>>, vector <vector <int>>> divide(vector <vector <int>> e) {
	int d = e[0].size();
	// F(i, 0, e.size() * 2) g[i].clear();
	F(i, 0, SZ(e))
		F(j, 0, d - 1) {
			int id = i * d + j;
			vis[id] = false;
			// debug << e[i][j] << endl;
			// debug << i << " " << e[i][j] + e.size() << endl;
			g[i].emplace_back(e[i][j] + e.size(), id);
			g[e[i][j] + e.size()].emplace_back(i, id);
		}
	cir.clear();
	F(i, 0, SZ(e))
		if (g[i].size()) euler(i);
	vector <vector <int>> a(e.size()), b(e.size());
	// debug << cir.size() << ' ' << e.size() * d << endl;
	F(i, 0, SZ(cir)) {
		int p = cir[i] / d, q = cir[i] % d;
		// debug << cir[i] << endl;
		((i & 1) ? a[p] : b[p]).push_back(e[p][q]);
	}
	// debug << a[0].size() << " " << b[0].size() << endl;
	return make_pair(a, b);
}
mt19937 mrand(1);
// mt19937 mrand(chrono::steady_clock::now().time_since_epoch().count());
int tor[N];
// bool vis[N];//, idl[N];
void work(vector <vector <int>> e) {
	int d = e[0].size();
	// F(i, 0, SZ(e)) cout << e[i].size() << ' '; cout << endl;
	// debug << d << endl;
	if (d == 1) {
		vector <int> g;
		for (auto i: e) {
			// assert(i.size());
			g.push_back(i[0]);
		}
		// res.push_back(e[0]);
		res.push_back(g);
		return;
	}
	if (d % 2 == 0) {
		// F(i, 0, SZ(e)) {
		// 	for (int j: e[i])
		// 		cout << i << " " << e.size() + j << endl;
		// }
		auto [x, y] = divide(e);
		// debug << x[0].size() << ' ' << y[0].size() << endl;
		work(x), work(y);
		return;
	}
	F(i, 0, SZ(e)) id[i] = i, tor[i] = -1, vis[i] = false;
	shuffle(id, id + e.size(), mrand);
	// debug << "!\n";
	F(i, 0, SZ(e)) {
		int x = id[i];
		// debug << x << endl;
		vector <int> sta;
		while (x != -1) {
			// debug << x << " " << d << endl;
			// for (int j: e[x]) cout << x << "  " << j << endl;
			int y;
			do {
				y = e[x][mrand() % e[x].size()];
				// debug << y << " " << tor[y] << endl;
			} while (tor[y] == x);
			// debug << y << endl;
			while (vis[y]) {
				vis[sta.back()] = false;
				sta.pop_back();
			}
			vis[y] = true;
			sta.push_back(y);
			x = tor[y];
		}
		int pos = id[i];
		for (int j: sta) swap(pos, tor[j]), vis[j] = false;
	}
	// vector <vector <int>> ee(n);
	vector <int> rres(e.size());
	F(i, 0, SZ(e)) {
		rres[tor[i]] = i;
		e[tor[i]].erase(find(all(e[tor[i]]), i));
	}
	// debug << e[0].size() << endl;
	res.push_back(rres);
	work(e);
}
void zhk() {
	read(n), read(r), read(c);
	F(i, 1, n) cnt[i] = 0;
	F(i, 1, r)
		F(j, 1, c)
			read(a[i][j]), cnt[a[i][j]]++;
	F(i, 1, n)
		if (cnt[i] + n - r + n - c < n) {
			puts("No");
			return;
		}
	if (c < n) {
		vector <vector <int>> e(n);
		F(i, 1, n) cnt[i] = r - cnt[i];
		F(i, 1, r) {
			F(j, 1, n) vis[j] = false;
			F(j, 1, c) vis[a[i][j]] = true;
			F(j, 1, n)
				if (!vis[j]) e[i - 1].push_back(j - 1);//, debug << i - 1 << ' ' << j - 1 << endl;
		}
		// F(j, 1, n) cout << cnt[j] << " "; cout << endl;
		F(i, r, n - 1) {
			F(j, 1, n) id[j] = j;
			sort(id + 1, id + n + 1, [&] (int x, int y) {
				return cnt[x] < cnt[y];
			});
			F(j, 1, n - c) {
				// debug << i << " " << id[j] << endl;
				e[i].push_back(id[j] - 1);
				cnt[id[j]]++;
			}
		}
		// F(j, 1, n) cout << cnt[j] << " "; cout << endl;
		// exit(0);
		res.clear();
		// debug << endl;
		// F(i, 0, SZ(e)) {
		// 	for (int j: e[i])
		// 		cout << j << ' ';
		// 	cout << endl;
		// }
		work(e);
		// debug << endl;
		F(i, c + 1, n)
			F(j, 1, r)
				a[j][i] = res[i - c - 1][j - 1] + 1;
	}
	if (r < n) {
		vector <vector <int>> e(n);
		F(i, 1, n) {
			F(j, 1, n) vis[j] = false;
			F(j, 1, r) vis[a[j][i]] = true;
			F(j, 1, n)
				if (!vis[j]) e[i - 1].push_back(j - 1);
		}
		res.clear();
		// debug << endl;
		work(e);
		F(i, r + 1, n)
			F(j, 1, n)
				a[i][j] = res[i - r - 1][j - 1] + 1;
	}
	puts("Yes");
	F(i, 1, n) {
		F(j, 1, n)
			cout << a[i][j] << ' ';
		cout << '\n';
	}
}
signed main() {
	int _ = 1;
	cin >> _;
	while (_--) zhk();
	return 0;
}
/* why?
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 5
Accepted
time: 1ms
memory: 3584kb

input:

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

output:

Yes
1 5 6 4 2 3 
3 2 5 1 6 4 
6 4 2 3 1 5 
5 1 3 6 4 2 
4 3 1 2 5 6 
2 6 4 5 3 1 
Yes
1 4 2 6 5 3 
6 5 4 3 2 1 
5 3 6 4 1 2 
3 2 1 5 4 6 
4 1 3 2 6 5 
2 6 5 1 3 4 
Yes
4 1 5 3 6 2 
5 2 1 6 3 4 
6 3 2 4 1 5 
2 6 3 5 4 1 
3 5 4 1 2 6 
1 4 6 2 5 3 
Yes
4 5 1 2 6 3 
1 2 4 6 3 5 
3 6 2 5 1 4 
2 4 6 3 5 1...

result:

ok ok (10 test cases)

Test #2:

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

input:

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

output:

Yes
5 4 6 2 3 1 
4 6 3 1 5 2 
6 3 2 4 1 5 
2 1 5 6 4 3 
3 2 1 5 6 4 
1 5 4 3 2 6 
Yes
3 1 6 4 5 2 
1 6 2 5 3 4 
2 3 1 6 4 5 
6 5 4 3 2 1 
5 4 3 2 1 6 
4 2 5 1 6 3 
Yes
6 4 2 3 5 1 
1 2 6 5 4 3 
5 6 1 4 3 2 
4 3 5 2 1 6 
2 5 3 1 6 4 
3 1 4 6 2 5 
Yes
2 5 6 3 4 1 
4 1 5 2 6 3 
6 3 1 4 5 2 
3 2 4 6 1 5...

result:

ok ok (10 test cases)

Test #3:

score: 5
Accepted
time: 1ms
memory: 3664kb

input:

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

output:

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

result:

ok ok (10 test cases)

Test #4:

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

input:

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

output:

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

result:

ok ok (10 test cases)

Test #5:

score: 5
Accepted
time: 2075ms
memory: 38148kb

input:

10
500 1 39
201 443 328 346 404 472 146 117 171 389 321 403 420 280 197 343 126 315 108 39 42 278 303 11 255 330 101 422 263 281 496 110 97 159 406 241 178 187 179
500 1 362
278 200 441 177 47 404 184 261 199 492 198 470 39 71 297 72 134 157 92 313 269 40 304 168 447 290 224 181 481 218 489 374 383 ...

output:

Yes
201 443 328 346 404 472 146 117 171 389 321 403 420 280 197 343 126 315 108 39 42 278 303 11 255 330 101 422 263 281 496 110 97 159 406 241 178 187 179 312 308 464 442 494 500 499 481 485 461 397 491 477 399 454 492 468 498 487 483 476 478 452 398 388 480 482 465 431 457 479 484 489 497 441 194 ...

result:

ok ok (10 test cases)

Test #6:

score: 5
Accepted
time: 19ms
memory: 5096kb

input:

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

output:

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

result:

ok ok (10 test cases)

Test #7:

score: 5
Accepted
time: 24ms
memory: 5272kb

input:

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

output:

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

result:

ok ok (10 test cases)

Test #8:

score: 5
Accepted
time: 204ms
memory: 16912kb

input:

10
300 115 300
258 235 113 48 246 149 278 25 90 216 220 299 69 285 134 206 39 52 15 265 111 28 94 11 194 187 242 154 62 60 116 135 86 144 124 108 119 283 282 211 245 295 112 261 4 2 10 244 267 196 83 143 105 70 40 272 55 155 97 74 13 65 132 288 170 174 260 165 46 151 252 53 32 201 66 142 274 27 30 1...

output:

Yes
258 235 113 48 246 149 278 25 90 216 220 299 69 285 134 206 39 52 15 265 111 28 94 11 194 187 242 154 62 60 116 135 86 144 124 108 119 283 282 211 245 295 112 261 4 2 10 244 267 196 83 143 105 70 40 272 55 155 97 74 13 65 132 288 170 174 260 165 46 151 252 53 32 201 66 142 274 27 30 197 96 98 19...

result:

ok ok (10 test cases)

Test #9:

score: 5
Accepted
time: 288ms
memory: 16736kb

input:

10
300 39 300
153 47 152 270 96 202 24 212 109 69 160 116 133 91 150 258 246 8 295 210 223 99 178 159 32 205 101 23 213 26 89 281 117 218 106 75 215 290 104 82 113 105 174 71 297 242 197 115 221 225 5 122 286 94 9 200 28 203 33 77 108 234 12 279 7 34 154 229 62 143 186 142 275 168 196 111 25 51 156 ...

output:

Yes
153 47 152 270 96 202 24 212 109 69 160 116 133 91 150 258 246 8 295 210 223 99 178 159 32 205 101 23 213 26 89 281 117 218 106 75 215 290 104 82 113 105 174 71 297 242 197 115 221 225 5 122 286 94 9 200 28 203 33 77 108 234 12 279 7 34 154 229 62 143 186 142 275 168 196 111 25 51 156 228 193 4 ...

result:

ok ok (10 test cases)

Test #10:

score: 5
Accepted
time: 682ms
memory: 36424kb

input:

10
500 18 500
282 102 421 339 20 225 141 221 457 330 196 314 245 377 7 39 113 106 111 57 495 479 480 388 405 367 398 112 101 379 251 255 208 75 4 66 392 284 93 395 86 231 96 125 368 448 149 400 322 427 378 199 97 474 477 100 85 45 258 138 281 273 363 202 288 493 328 483 357 190 194 43 289 19 319 137...

output:

Yes
282 102 421 339 20 225 141 221 457 330 196 314 245 377 7 39 113 106 111 57 495 479 480 388 405 367 398 112 101 379 251 255 208 75 4 66 392 284 93 395 86 231 96 125 368 448 149 400 322 427 378 199 97 474 477 100 85 45 258 138 281 273 363 202 288 493 328 483 357 190 194 43 289 19 319 137 404 209 2...

result:

ok ok (10 test cases)

Test #11:

score: 5
Accepted
time: 2011ms
memory: 38276kb

input:

10
500 171 146
271 474 337 28 15 9 494 482 381 404 25 74 465 378 446 11 150 160 434 199 248 419 221 354 425 265 215 94 426 197 288 287 236 223 259 8 167 453 284 499 483 473 171 62 464 383 2 476 313 116 394 293 212 182 347 457 108 325 95 82 396 96 254 432 90 79 247 351 303 110 54 459 460 311 158 415 ...

output:

Yes
271 474 337 28 15 9 494 482 381 404 25 74 465 378 446 11 150 160 434 199 248 419 221 354 425 265 215 94 426 197 288 287 236 223 259 8 167 453 284 499 483 473 171 62 464 383 2 476 313 116 394 293 212 182 347 457 108 325 95 82 396 96 254 432 90 79 247 351 303 110 54 459 460 311 158 415 469 149 268...

result:

ok ok (10 test cases)

Test #12:

score: 5
Accepted
time: 2039ms
memory: 37008kb

input:

10
500 61 70
15 300 446 146 477 420 244 462 443 49 328 24 158 440 47 18 43 388 258 366 488 312 426 138 359 114 489 130 464 407 190 450 471 391 55 89 345 131 393 247 39 265 196 78 299 384 135 219 179 184 313 406 73 424 193 459 291 343 434 58 427 92 295 441 83 285 87 397 499 493
494 55 314 100 383 7 3...

output:

Yes
15 300 446 146 477 420 244 462 443 49 328 24 158 440 47 18 43 388 258 366 488 312 426 138 359 114 489 130 464 407 190 450 471 391 55 89 345 131 393 247 39 265 196 78 299 384 135 219 179 184 313 406 73 424 193 459 291 343 434 58 427 92 295 441 83 285 87 397 499 493 436 199 144 368 500 445 311 270...

result:

ok ok (10 test cases)

Test #13:

score: 5
Accepted
time: 33ms
memory: 5276kb

input:

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

output:

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

result:

ok ok (10 test cases)

Test #14:

score: 5
Accepted
time: 40ms
memory: 5312kb

input:

10
100 4 18
31 65 89 37 67 58 8 48 40 92 12 68 15 98 88 29 43 24
16 30 49 22 4 66 98 81 34 79 8 85 53 23 77 12 67 95
62 48 44 5 69 25 74 68 87 21 99 50 94 82 64 57 19 33
84 40 32 76 52 18 61 28 26 60 83 59 41 11 10 46 91 78
100 92 87
48 8 18 45 5 89 75 79 96 19 41 53 73 42 36 46 94 31 69 20 98 13 83...

output:

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

result:

ok ok (10 test cases)

Test #15:

score: 5
Accepted
time: 386ms
memory: 16680kb

input:

10
300 44 46
113 257 78 212 276 158 253 150 210 278 127 237 40 149 30 63 294 143 239 49 231 70 176 111 213 203 256 192 35 69 68 250 21 23 94 41 288 171 65 126 236 44 289 137 53 129
290 230 271 87 84 251 243 127 279 48 14 174 17 194 191 154 228 297 3 82 86 195 278 143 98 241 137 20 239 30 224 100 169...

output:

Yes
113 257 78 212 276 158 253 150 210 278 127 237 40 149 30 63 294 143 239 49 231 70 176 111 213 203 256 192 35 69 68 250 21 23 94 41 288 171 65 126 236 44 289 137 53 129 96 193 265 106 170 223 300 255 124 88 199 238 47 297 135 26 180 57 190 72 281 229 151 243 155 99 204 20 271 120 85 9 42 219 13 2...

result:

ok ok (10 test cases)

Test #16:

score: 5
Accepted
time: 459ms
memory: 17536kb

input:

10
300 188 74
150 99 240 206 215 91 127 278 69 254 229 266 211 180 205 183 270 198 261 1 48 258 231 148 280 159 21 225 237 109 54 196 77 284 89 189 233 247 217 257 193 291 42 221 213 15 163 14 121 245 26 66 52 218 166 236 139 62 103 242 182 101 234 174 288 59 300 111 144 223 72 216 9 41
10 278 32 19...

output:

Yes
150 99 240 206 215 91 127 278 69 254 229 266 211 180 205 183 270 198 261 1 48 258 231 148 280 159 21 225 237 109 54 196 77 284 89 189 233 247 217 257 193 291 42 221 213 15 163 14 121 245 26 66 52 218 166 236 139 62 103 242 182 101 234 174 288 59 300 111 144 223 72 216 9 41 265 106 299 228 136 16...

result:

ok ok (10 test cases)

Test #17:

score: 5
Accepted
time: 1211ms
memory: 34396kb

input:

10
500 137 394
193 219 137 113 369 248 464 74 408 167 383 399 482 149 154 147 6 50 69 440 437 29 286 427 307 141 228 373 296 244 273 428 44 266 341 173 255 487 114 332 416 405 367 312 323 163 133 339 20 170 26 67 96 195 241 14 205 233 291 179 478 235 381 151 185 469 82 473 441 421 311 118 350 404 23...

output:

Yes
193 219 137 113 369 248 464 74 408 167 383 399 482 149 154 147 6 50 69 440 437 29 286 427 307 141 228 373 296 244 273 428 44 266 341 173 255 487 114 332 416 405 367 312 323 163 133 339 20 170 26 67 96 195 241 14 205 233 291 179 478 235 381 151 185 469 82 473 441 421 311 118 350 404 230 218 472 3...

result:

ok ok (10 test cases)

Test #18:

score: 5
Accepted
time: 1338ms
memory: 36304kb

input:

10
500 481 22
422 263 216 135 73 497 183 188 119 498 338 39 111 113 469 372 274 348 15 456 459 82
21 98 209 76 360 5 481 198 153 147 138 278 131 330 270 350 293 492 426 95 468 27
225 47 65 467 473 440 279 352 475 248 17 33 456 210 70 421 55 208 46 464 277 314
15 426 427 25 300 30 150 417 306 448 492...

output:

Yes
422 263 216 135 73 497 183 188 119 498 338 39 111 113 469 372 274 348 15 456 459 82 303 374 219 282 435 500 309 203 66 398 160 100 344 483 251 58 394 180 123 470 329 259 185 423 50 447 136 370 227 94 321 17 476 199 410 491 152 133 366 268 26 144 455 299 247 357 37 210 75 439 414 337 311 46 386 2...

result:

ok ok (10 test cases)

Test #19:

score: 5
Accepted
time: 1152ms
memory: 37128kb

input:

10
500 30 446
375 376 479 293 237 104 108 215 262 4 444 241 436 121 443 195 50 166 234 165 285 315 412 469 92 159 302 44 252 9 392 487 3 495 28 96 341 253 466 352 365 32 176 401 483 60 247 8 58 371 143 68 158 201 364 42 381 240 22 272 427 183 306 235 66 144 438 138 437 208 52 122 174 209 15 102 445 ...

output:

Yes
375 376 479 293 237 104 108 215 262 4 444 241 436 121 443 195 50 166 234 165 285 315 412 469 92 159 302 44 252 9 392 487 3 495 28 96 341 253 466 352 365 32 176 401 483 60 247 8 58 371 143 68 158 201 364 42 381 240 22 272 427 183 306 235 66 144 438 138 437 208 52 122 174 209 15 102 445 428 465 85...

result:

ok ok (10 test cases)

Test #20:

score: 5
Accepted
time: 1226ms
memory: 30580kb

input:

10
500 204 440
401 43 120 246 337 382 241 103 329 272 343 439 9 435 159 355 468 281 333 54 158 479 106 88 50 288 204 412 317 70 78 446 121 238 458 338 230 239 313 263 237 249 115 27 56 107 282 132 117 74 32 113 84 105 413 102 371 184 12 148 373 262 83 29 283 331 209 134 125 67 60 147 459 82 270 316 ...

output:

Yes
401 43 120 246 337 382 241 103 329 272 343 439 9 435 159 355 468 281 333 54 158 479 106 88 50 288 204 412 317 70 78 446 121 238 458 338 230 239 313 263 237 249 115 27 56 107 282 132 117 74 32 113 84 105 413 102 371 184 12 148 373 262 83 29 283 331 209 134 125 67 60 147 459 82 270 316 244 3 4 28 ...

result:

ok ok (10 test cases)