CSES - Putka Open 2020 – 4/5 - Results
Submission details
Task:Ruudukko
Sender:Laakeri
Submission time:2020-11-08 15:47:08 +0200
Language:C++ (C++11)
Status:READY
Result:17
Feedback
groupverdictscore
#1ACCEPTED5
#2ACCEPTED12
#30
#40
#50
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 5details
#2ACCEPTED0.01 s2, 5details
#30.01 s3, 5details
#40.01 s4, 5details
#50.01 s5details
#60.01 s5details
#7ACCEPTED0.01 s2, 5details
#8ACCEPTED0.01 s2, 5details
#9ACCEPTED0.01 s3, 5details
#10ACCEPTED0.01 s3, 5details
#110.01 s3, 5details
#120.01 s3, 5details
#130.01 s4, 5details
#140.01 s5details
#15ACCEPTED0.03 s3, 5details
#160.01 s5details

Code

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

int h[55][55];

void check(string res, int n, int m, int y1, int x1, int y2, int x2) {
	for (int i=1;i<=n;i++){
		for (int ii=1;ii<=m;ii++){
			h[i][ii]=0;
		}
	}
	assert((int)res.size() == n*m-1);
	int ty=y1;
	int tx=x1;
	assert(1<=ty&&ty<=n&&1<=tx&&tx<=m);
	h[ty][tx]=1;
	for (char c : res) {
		if (c=='R') tx++;
		if (c=='L') tx--;
		if (c=='D') ty++;
		if (c=='U') ty--;
		assert(1<=ty&&ty<=n&&1<=tx&&tx<=m);
		assert(h[ty][tx]==0);
		h[ty][tx]=1;
	}
	assert(ty==y2&&tx==x2);
}

string tr(string res, string trs) {
	while (!trs.empty()){
		char t=trs.back();
		trs.pop_back();
		if (t=='Y'){
			for (char& c : res) {
				if (c=='D') {
					c='U';
				} else if (c=='U'){
					c='D';
				}
			}
		} else if (t=='X'){
			for (char& c : res) {
				if (c=='L') {
					c='R';
				} else if (c=='R'){
					c='L';
				}
			}
		} else if (t=='C'){
			for (char& c : res) {
				if (c=='R'){
					c='D';
				} else if(c=='L') {
					c='U';
				} else if(c=='U'){
					c='L';
				} else if(c=='D'){
					c='R';
				}
			}
		} else{
			assert(0);
		}
	}
	return res;
}

bool brute(int n, int m, int y1, int x1, int y2, int x2, string& res) {
	if (y1<1||x1<1||y1>n||x1>m||h[y1][x1]) {
		return false;
	}
	if (y1==y2 && x1==x2) {
		if ((int)res.size() == n*m-1){
			return true;
		}
		return false;
	}
	h[y1][x1]=1;
	res+='U';
	if (brute(n, m, y1-1, x1, y2, x2, res)) {
		return true;
	}
	res.pop_back();
	res+='D';
	if (brute(n, m, y1+1, x1, y2, x2, res)){
		return true;
	}
	res.pop_back();
	res+='L';
	if (brute(n, m, y1, x1-1, y2, x2, res)){
		return true;
	}
	res.pop_back();
	res+='R';
	if (brute(n, m, y1, x1+1, y2, x2, res)){
		return true;
	}
	res.pop_back();
	h[y1][x1]=0;
	return false;
}

string go(int n, int m, int y1, int x1, int y2, int x2) {
	assert(n>=1&&m>=1);
	string trs;
	if (n>m){
		swap(n,m);
		swap(y1,x1);
		swap(y2,x2);
		trs+='C';
	}
	if (x1>x2){
		x1=m+1-x1;
		x2=m+1-x2;
		trs+='X';
	}
	if (y1>y2){
		y1=n+1-y1;
		y2=n+1-y2;
		trs+='Y';
	}
	if ((n*m)%2==0){
		if ((y1+x1)%2 == (y2+x2)%2){
			return "-";
		}
	} else {
		if ((y1+x1)%2 == 1 || (y2+x2)%2 == 1) {
			return "-";
		}
	}
	/*
	if ((y1+x1+n*m)%2==(y2+x2)%2) {
		return "-";
	}
	if (y1==1&&x1==m-1&&y2==2&&x2==m){
		return "-";
	}
	if (y1==n-1&&x1==1&&y2==n&&x2==2){
		return "-";
	}
	if (n<=3&&m<=3){
		for (int i=1;i<=n;i++){
			for (int ii=1;ii<=m;ii++){
				h[i][ii]=0;
			}
		}
		string res;
		bool succ=brute(n, m, y1, x1, y2, x2, res);
		if (succ){
			assert((int)res.size() == n*m-1);
			return tr(res, trs);
		} else {
			return "-";
		}
	}*/
	if (n==1) {
		if (x1==1&&x2==m){
			string res;
			for (int j=0;j<m-1;j++){
				res+='R';
			}
			return tr(res, trs);
		}
		return "-";
	}
	if (n==2) {
		if (x1==x2&&x1>1&&x1<m){
			return "-";
		}
		if (x1==x2){
			if (x1==m){
				trs+='X';
				x1=1;
				x2=1;
			}
			assert(y1==1&&y2==2);
			string res;
			for (int j=0;j<m-1;j++){
				res+='R';
			}
			res+='D';
			for (int j=0;j<m-1;j++){
				res+='L';
			}
			return tr(res, trs);
		}
		if (y1==y2){
			if (y1==2){
				trs+='Y';
				y1=1;
				y2=1;
			}
			string res;
			for (int j=0;j<x1-1;j++){
				res+='L';
			}
			res+='D';
			for (int j=0;j<x1-1;j++){
				res+='R';
			}
			for (int j=0;j<(x2-x1)/2;j++){
				res+="RURD";
			}
			for (int j=0;j<m-x2+1;j++){
				res+='R';
			}
			res+='U';
			for (int j=0;j<m-x2;j++){
				res+='L';
			}
			return tr(res, trs);
		}
		string res;
		for (int j=0;j<x1-1;j++){
			res+='L';
		}
		res+='D';
		for (int j=0;j<x1-1;j++){
			res+='R';
		}
		for (int j=0;j<(x2-x1)/2-1;j++){
			res+="RURD";
		}
		res+="RUR";
		for (int j=0;j<m-x2;j++){
			res+='R';
		}
		res+='D';
		for (int j=0;j<m-x2;j++){
			res+='L';
		}
		return tr(res, trs);
	}
	if (n==3&&m%2==0&&(x1+y1)%2==1){
		if (x1<x2-1) {
			return "-";
		}
		if (y1==2&&x1<x2){
			return "-";
		}
	}
	// Now should be feasible
	assert(x1<=x2&&y1<=y2);
	if (x1<=2){
		x1=m+1-x1;
		x2=m+1-x2;
		trs+='X';
	}
	if (x1>2&&x2>2){
		cerr<<n<<" "<<m<<" "<<y1<<" "<<x1<<" "<<y2<<" "<<x2<<endl;
		string r=go(n, m-2, y1, x1-2, y2, x2-2);
		assert(r != "-");
		cerr<<"got "<<r<<endl;
		string res;
		bool u=false;
		int ty=y1;
		int tx=x1-2;
		for (char c : r) {
			if (c=='U') {
				if (tx==1 && !u) {
					string r2=go(n, 2, ty, 2, ty-1, 2);
					assert(r2 != "-");
					res+='L';
					for (char c2 : r2) {
						res+=c2;
					}
					res+='R';
					u=true;
				} else {
					res+=c;
				}
				ty--;
			} else if (c=='D') {
				if (tx==1 && !u) {
					string r2=go(n, 2, ty, 2, ty+1, 2);
					assert(r2 != "-");
					res+='L';
					for (char c2 : r2) {
						res+=c2;
					}
					res+='R';
					u=true;
				} else {
					res+=c;
				}
				ty++;
			} else if (c=='L'){
				tx--;
				res+=c;
			} else if(c=='R'){
				tx++;
				res+=c;
			}
		}
		cerr<<res<<endl;
		return tr(res, trs);
	}
	if (x1>x2){
		x1=m+1-x1;
		x2=m+1-x2;
		trs+='X';
	}
	if (y1>y2){
		y1=n+1-y1;
		y2=n+1-y2;
		trs+='Y';
	}
	assert(x1<=2&&x2>=m-1);
	if (n<=5&&m<=5){
		for (int i=1;i<=n;i++){
			for (int ii=1;ii<=m;ii++){
				h[i][ii]=0;
			}
		}
		string res;
		cerr<<n<<" "<<m<<" "<<y1<<" "<<x1<<" "<<y2<<" "<<x2<<endl;
		bool succ=brute(n, m, y1, x1, y2, x2, res);
		assert(succ);
		return tr(res, trs);
	}
	assert(0);
}

void solve() {
	int n,m,y1,x1,y2,x2;
	cin>>n>>m>>y1>>x1>>y2>>x2;
	string res = go(n, m, y1, x1, y2, x2);
	if (res == "-"){
		cout<<"NO"<<endl;
		return;
	}
	check(res, n, m, y1, x1, y2, x2);
	cout<<"YES"<<endl;
	cout<<res<<endl;
}


int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	int tcs;
	cin>>tcs;
	for (int tc=0;tc<tcs;tc++){
		solve();
	}
}

Test details

Test 1

Group: 1, 5

Verdict: ACCEPTED

input
100
1 45 1 45 1 1
1 18 1 1 1 10
1 47 1 17 1 30
1 33 1 28 1 20
...

correct output
YES
LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL...

user output
YES
LLLLLLLLLLLLLLLLLLLLLLLLLLLLLL...
Truncated

Test 2

Group: 2, 5

Verdict: ACCEPTED

input
100
2 43 1 33 1 21
2 2 1 1 2 2
2 32 1 1 2 8
2 14 1 12 1 14
...

correct output
NO
NO
NO
NO
YES
...

user output
NO
NO
NO
NO
YES
...
Truncated

Test 3

Group: 3, 5

Verdict:

input
100
3 4 2 1 2 4
3 38 2 24 1 22
3 29 2 23 2 3
3 8 3 1 1 2
...

correct output
NO
NO
NO
YES
RRRRRRRUULDLULDLULDLLUR
...

user output
NO
NO
NO
YES
RRRRRRRUULDLULDLULDLLUR

Error:
3 8 1 8 3 7
3 6 1 6 3 5
3 4 1 4 3 3
got LDRDL
LLLDDRURRDL
got LLLDDRURRDL
LLLLLDDRURDRURRD...

Test 4

Group: 4, 5

Verdict:

input
100
4 25 2 19 1 5
4 13 3 10 4 12
4 7 3 1 4 2
4 23 1 19 2 5
...

correct output
YES
DDRRRRRRULLLLLURRRRRULLLLLLLDD...

user output
(empty)

Error:
4 25 3 7 4 21
4 23 3 5 4 19
4 21 3 3 4 17
4 19 3 19 4 5
4 17 3 17 4 3
code: input/code.cpp...

Test 5

Group: 5

Verdict:

input
100
16 8 13 1 14 8
41 21 19 11 32 12
46 17 13 7 6 11
8 41 4 32 4 12
...

correct output
NO
YES
LURULURULURULURULURRDDDDDDDDDR...

user output
NO

Error:
21 41 11 19 12 32
21 39 11 17 12 30
21 37 11 15 12 28
21 35 11 13 12 26
21 33 11 11 12 24...

Test 6

Group: 5

Verdict:

input
100
31 38 18 35 31 37
35 48 7 13 21 21
46 21 25 2 4 19
35 2 13 2 35 1
...

correct output
YES
LLLLLLLLLLLLDRRRRRRRRRRRRDLLLL...

user output
(empty)

Error:
31 38 18 35 31 37
31 36 18 33 31 35
31 34 18 31 31 33
31 32 18 29 31 31
30 31 27 18 29 31...

Test 7

Group: 2, 5

Verdict: ACCEPTED

input
100
2 4 1 3 1 4
2 4 2 2 1 1
2 4 2 3 1 2
2 4 2 3 1 4
...

correct output
YES
LLDRRRU
NO
NO
NO
...

user output
YES
LLDRRRU
NO
NO
NO
...
Truncated

Test 8

Group: 2, 5

Verdict: ACCEPTED

input
100
2 5 1 2 2 4
2 5 1 2 1 1
2 5 2 1 1 2
2 5 1 1 1 5
...

correct output
YES
LDRRURRDL
YES
RRRDLLLLU
NO
...

user output
YES
LDRRURRDL
YES
RRRDLLLLU
NO
...
Truncated

Test 9

Group: 3, 5

Verdict: ACCEPTED

input
100
3 4 1 1 2 3
3 4 2 4 3 2
3 4 2 1 3 1
3 4 1 4 3 4
...

correct output
YES
DDRRRUULLDR
NO
YES
URRRDDLULDL
...

user output
YES
DDRUURRDDLU
NO
YES
URRRDDLULDL
...
Truncated

Error:
3 4 1 1 2 3
3 4 2 4 3 4
got ULDDR
ULLLDDRURDR
3 4 1 1 3 4
3 4 1 4 2 4
got LDDRU
LLLDDRURDR...

Test 10

Group: 3, 5

Verdict: ACCEPTED

input
100
3 5 3 4 3 2
3 5 3 5 2 3
3 5 3 1 2 2
3 5 3 1 3 2
...

correct output
NO
NO
YES
UURRRRDDLULDLU
NO
...

user output
NO
NO
YES
UURRRRDDLULDLU
NO
...
Truncated

Error:
3 5 1 5 2 4
3 3 1 1 2 2
got DDLLUURD
DDLLLLUURDRURD
3 5 1 5 3 3
3 3 1 1 3 3
got DDLUULDD
D...

Test 11

Group: 3, 5

Verdict:

input
100
3 8 2 8 1 2
3 8 2 4 1 7
3 8 3 4 2 7
3 8 2 5 3 1
...

correct output
NO
NO
NO
YES
LLLDRRRRURDRUULLLLLLLDD
...

user output
NO
NO
NO

Error:
3 8 2 4 3 8
code: input/code.cpp:321: std::__cxx11::string go(int, int, int, int, int, int...

Test 12

Group: 3, 5

Verdict:

input
100
3 9 1 3 2 9
3 9 1 6 1 5
3 9 3 6 2 8
3 9 3 2 3 4
...

correct output
NO
NO
NO
NO
NO
...

user output
NO
NO
NO
NO
NO
...
Truncated

Error:
3 9 3 3 3 7
3 7 3 7 3 3
3 5 3 1 3 5
got UULDDLUULLDRDL
UULDDLUULLLLDDRURRDL
got UURDDRUURR...

Test 13

Group: 4, 5

Verdict:

input
100
4 4 2 2 1 4
4 4 4 1 2 2
4 4 2 1 4 3
4 4 3 1 3 3
...

correct output
YES
DDLUUURRDDDRUUU
YES
UUURRRDLDRDLLUU
NO
...

user output
YES
DDLUUURRDDDRUUU
YES
RRRUUULDDLLUURD
NO
...
Truncated

Error:
4 4 3 2 4 4
4 4 1 4 3 3
got LDRDDLU
LLLDDDRUURRDDLU
4 4 1 3 2 3
got RDDDLUU
RDDDLLLUUURDDR...

Test 14

Group: 5

Verdict:

input
100
12 27 6 22 1 8
6 25 3 2 4 4
6 16 4 6 5 2
36 33 8 6 1 6
...

correct output
YES
DLDDDDDRUUUURDDDDRUURDDRRULURU...

user output
(empty)

Error:
12 27 7 6 12 20
12 25 7 4 12 18
12 23 7 22 12 8
12 21 7 20 12 6
12 19 7 18 12 4
code: inpu...

Test 15

Group: 3, 5

Verdict: ACCEPTED

input
100
3 12 3 5 1 4
3 20 3 19 2 19
3 34 3 9 2 9
3 38 2 15 3 15
...

correct output
YES
RRRRRRRUULDLULDLULDLULDLDLULDL...

user output
YES
RRRRRRRUULDLULDLULDLULDLDLLLUU...
Truncated

Error:
3 12 1 8 3 9
3 10 1 6 3 7
3 8 1 4 3 5
3 6 1 5 3 4
3 4 1 2 3 3
got RDDLULULDDR
RDDLULULLLDD...

Test 16

Group: 5

Verdict:

input
100
50 50 29 1 16 21
50 50 37 5 23 48
50 50 32 22 45 24
50 50 6 28 12 37
...

correct output
YES
DDDDDDDDDDDDDDDDDDDDDRUUUUUUUU...

user output
(empty)

Error:
50 50 22 50 35 30
48 50 1 22 21 35
48 48 1 20 21 33
46 48 18 48 31 28
46 46 18 46 31 26
44...