CSES - Datatähti 2021 loppu - Results
Submission details
Task:Murtoviiva
Sender:Nanohenry
Submission time:2021-01-23 19:58:27 +0200
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2, 4, 5details
#2--1, 2, 4, 5details
#3ACCEPTED0.01 s1, 2, 4, 5details
#4--1, 2, 4, 5details
#5ACCEPTED0.01 s1, 2, 4, 5details
#6ACCEPTED0.01 s2, 4, 5details
#7ACCEPTED0.01 s2, 4, 5details
#8ACCEPTED0.01 s2, 4, 5details
#9ACCEPTED0.01 s2, 4, 5details
#10--2, 4, 5details
#11--4, 5details
#12--5details
#13--3, 4, 5details
#14--3, 4, 5details
#15ACCEPTED0.01 s1, 2, 4, 5details
#16--4, 5details
#17--4, 5details
#18--5details
#19--1, 2, 4, 5details
#20ACCEPTED0.01 s2, 4, 5details
#21ACCEPTED0.01 s2, 4, 5details
#22ACCEPTED0.01 s2, 4, 5details
#23--4, 5details
#24--4, 5details
#25--4, 5details
#26--5details
#27--5details
#28--5details
#29--5details
#30ACCEPTED0.01 s1, 2, 4, 5details

Code

#include <iostream>
#include <setjmp.h>

using namespace std;

typedef struct point {
	int64_t x, y;
} point_t;

typedef struct line {
	point_t s, e;
} line_t;

inline bool cr(point_t _as, point_t _ae, point_t _bs, point_t _be) {
	line_t a = {_as, _ae}, b = {_bs, _be};
	if (a.s.x == a.e.x) {
		if (a.s.y > a.e.y) {
			point_t t = a.s;
			a.s = a.e;
			a.e = t;
		}
	} else {
		if (a.s.x > a.e.x) {
			point_t t = a.s;
			a.s = a.e;
			a.e = t;
		}
	}
	if (b.s.x == b.e.x) {
		if (b.s.y > b.e.y) {
			point_t t = b.s;
			b.s = b.e;
			b.e = t;
		}
	} else {
		if (b.s.x > b.e.x) {
			point_t t = b.s;
			b.s = b.e;
			b.e = t;
		}
	}
	if (a.s.x == a.e.x && b.s.x == b.e.x) {
		return a.s.x == b.s.x && ((a.s.y >= b.s.y && a.s.y <= b.e.y) || (a.e.y >= b.s.y && a.e.y <= b.e.y));
	} else if (a.s.x != a.e.x && b.s.x != b.e.x) {
		return a.s.y == b.s.y && ((a.s.x >= b.s.x && a.s.x <= b.e.x) || (a.e.x >= b.s.x && a.e.x <= b.e.x));
	} else if (a.s.x != a.e.x && b.s.x == b.e.x) {
		return a.s.x <= b.s.x && a.e.x >= b.s.x && b.s.y <= a.s.y && b.e.y >= a.s.y;
	} else /*if (a.s.x == a.e.x && b.s.x != b.e.x)*/ {
		return b.s.x <= a.s.x && b.e.x >= a.s.x && a.s.y <= b.s.y && a.e.y >= b.s.y;
	}
}

int64_t n, l[100000];
string d;

point_t sp = {0, 0};
line_t fl[100000];
int64_t ll[100000];
int64_t li = 0, lcl = -1;

jmp_buf ex;

void s() {
	if (li == n + n - 1) {
		//cout << "Finish" << endl;
		longjmp(ex, 1);
	}
	point_t rp = sp;
	//cout << "Entered " << sp.x << " " << sp.y << endl;
	if (li % 2 == 0) {
		point_t t = sp;
		if (li % 4 == 0) {
			t.x += l[li / 2];
			//cout << "Right" << endl;
		} else {
			t.x -= l[li / 2];
			//cout << "Left" << endl;
		}
		for (int64_t j = 0; j < li - 1; j++) {
			if (cr(fl[j].s, fl[j].e, sp, t)) {
				//cout << "Crossed with " << j << endl;
				return;
			}
		}
		fl[li] = {sp, t};
		sp = t;
		li++;
		s();
		li--;
		sp = rp;
		//cout << "Back to " << sp.x << " " << sp.y << endl;
	} else {
		for (int64_t i = 1; i < 1e9; i++) {
			point_t t = sp;
			if (d[li / 2] == 'U') {
				t.y -= i;
				//cout << "Up" << endl;
			} else {
				t.y += i;
				//cout << "Down" << endl;
			}
			for (int64_t j = 0; j < li - 1; j++) {
				if (cr(fl[j].s, fl[j].e, sp, t)) {
					//cout << "Crossed with " << j << endl;
					return;
				}
			}
			fl[li] = {sp, t};
			ll[li / 2] = i;
			sp = t;
			li++;
			s();
			li--;
			sp = rp;
			//cout << "Back to " << sp.x << " " << sp.y << endl;
		}
	}
}

int main() {
	cin >> n;
	for (int64_t i = 0; i < n; i++) {
		cin >> l[i];
	}
	cin >> d;
	if (!setjmp(ex)) {
		s();
	}
	cout << "YES" << endl;
	for (int64_t i = 0; i < n - 1; i++) {
		cout << ll[i] << ' ';
	}
	cout << endl;
}

Test details

Test 1

Group: 1, 2, 4, 5

Verdict: ACCEPTED

input
2
2 10
D

correct output
YES

user output
YES

Test 2

Group: 1, 2, 4, 5

Verdict:

input
8
5 8 7 5 6 5 3 4
DUUUDDD

correct output
YES
1 5 1 1 3 1 1 

user output
(empty)

Test 3

Group: 1, 2, 4, 5

Verdict: ACCEPTED

input
8
9 8 8 10 10 8 9 10
DDDUUUD

correct output
YES
1 1 1 4 1 1 7 

user output
YES
1 1 1 4 1 1 7 

Test 4

Group: 1, 2, 4, 5

Verdict:

input
8
9 10 8 8 9 9 7 8
DDDDUUU

correct output
NO

user output
(empty)

Test 5

Group: 1, 2, 4, 5

Verdict: ACCEPTED

input
8
10 2 8 3 10 2 10 10
DDUUUUD

correct output
YES
1 1 3 1 1 1 7 

user output
YES
1 1 1 1 1 1 3 

Test 6

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
73 74 97 82 19 50 26 51 56 93 ...

correct output
YES
1 2 3 1 1 3 1 1 1 10 1 3 1 1 

user output
YES
1 2 3 1 1 1 1 1 1 3 1 6 1 1 

Test 7

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
95 71 97 77 98 76 100 62 96 69...

correct output
YES
1 1 3 1 1 1 1 1 9 1 11 1 13 1 

user output
YES
1 1 3 1 1 1 1 1 5 1 7 1 9 1 

Test 8

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
79 81 84 86 88 90 92 92 91 89 ...

correct output
YES
1 2 3 4 5 6 14 1 6 5 4 3 2 1 

user output
YES
1 2 3 4 5 6 14 1 6 5 4 3 2 1 

Test 9

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
97 90 87 83 79 76 74 23 24 76 ...

correct output
YES
13 11 9 7 5 3 1 1 3 5 7 9 11 1...

user output
YES
13 11 9 7 5 3 1 1 3 5 7 9 11 1...

Test 10

Group: 2, 4, 5

Verdict:

input
15
100 2 99 1 78 4 93 2 100 1 15 ...

correct output
NO

user output
(empty)

Test 11

Group: 4, 5

Verdict:

input
1000
999997 999995 999993 999991 99...

correct output
YES
997 995 993 991 989 987 985 98...

user output
(empty)

Test 12

Group: 5

Verdict:

input
100000
999999998 999999996 999999994 ...

correct output
YES
99997 99995 99993 99991 99989 ...

user output
(empty)

Test 13

Group: 3, 4, 5

Verdict:

input
1000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
YES
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 14

Group: 3, 4, 5

Verdict:

input
1000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
NO

user output
(empty)

Test 15

Group: 1, 2, 4, 5

Verdict: ACCEPTED

input
5
6 7 7 6 6
UDUU

correct output
YES
1 4 1 1 

user output
YES
1 4 1 1 

Test 16

Group: 4, 5

Verdict:

input
30
15 12 9 88 10 26 78 23 67 14 9...

correct output
YES
1 1 1 4 1 3 1 1 7 1 19 1 1 3 1...

user output
(empty)

Test 17

Group: 4, 5

Verdict:

input
1000
1000000 1 146324 146324 289287...

correct output
YES
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 18

Group: 5

Verdict:

input
100000
1000000000 1 421262579 4212625...

correct output
YES
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 19

Group: 1, 2, 4, 5

Verdict:

input
8
1 3 1 2 5 1 1 2
DUUUDUU

correct output
NO

user output
(empty)

Test 20

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
3 1 33 13 1 11 32 8 1 19 15 25...

correct output
YES
1 1 5 1 1 3 5 1 1 1 1 5 2 1 

user output
YES
1 1 3 1 1 3 5 1 1 1 1 5 2 1 

Test 21

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
10 2 39 41 42 34 31 28 26 24 2...

correct output
YES
1 1 1 1 10 9 8 7 6 1 4 1 1 1 

user output
YES
1 1 1 1 10 9 8 7 6 1 4 1 1 1 

Test 22

Group: 2, 4, 5

Verdict: ACCEPTED

input
15
27 4 6 23 26 37 40 38 44 27 3 ...

correct output
YES
1 1 1 1 5 1 7 1 3 1 1 3 1 1 

user output
YES
1 1 1 1 5 1 7 1 3 1 1 1 1 1 

Test 23

Group: 4, 5

Verdict:

input
1000
3246 3562 197273 197429 197755...

correct output
YES
1 1 1 4 5 10 3 1 1 3 7 12 1 1 ...

user output
(empty)

Test 24

Group: 4, 5

Verdict:

input
1000
503981 503487 503350 502673 50...

correct output
YES
999 1 997 1 1 994 989 1 1 1 1 ...

user output
(empty)

Test 25

Group: 4, 5

Verdict:

input
1000
1445 1363 1749 1084 262408 263...

correct output
NO

user output
(empty)

Test 26

Group: 5

Verdict:

input
100000
209655 9167 9389 191291 198294...

correct output
NO

user output
(empty)

Test 27

Group: 5

Verdict:

input
100000
16295 14904 5103 13337 26939 3...

correct output
YES
1 1 1 1 5 6 1 1 1 10 11 1 13 1...

user output
(empty)

Test 28

Group: 5

Verdict:

input
100000
1859 174288 15040 4631 4993844...

correct output
YES
1 3 1 1 99997 99992 1 1 5 1 1 ...

user output
(empty)

Test 29

Group: 5

Verdict:

input
100000
959817 958289 966165 922369 92...

correct output
YES
1 1 1 1 1 1 1 1 1 1 11 14 1 1 ...

user output
(empty)

Test 30

Group: 1, 2, 4, 5

Verdict: ACCEPTED

input
8
2 3 2 3 5 6 7 8
UDDDUDU

correct output
YES
1 2 1 1 5 6 7 

user output
YES
1 2 1 1 5 6 7