CSES - Datatähti 2019 loppu - Results
Submission details
Task:Binääripuu
Sender:Miska Kananen
Submission time:2018-12-26 22:10:08 +0200
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1UNKNOWN0
#2UNKNOWN0
#3UNKNOWN0
Test results
testverdicttimegroup
#1UNKNOWN--1details
#2UNKNOWN--1details
#3UNKNOWN--1details
#4UNKNOWN--1details
#5UNKNOWN--1details
#6UNKNOWN--1details
#7UNKNOWN--1details
#8UNKNOWN--1details
#9UNKNOWN--1details
#10UNKNOWN--1details
#11UNKNOWN--1details
#12UNKNOWN--1details
#13UNKNOWN--1details
#14UNKNOWN--1details
#15UNKNOWN--1details
#16UNKNOWN--1details
#17UNKNOWN--1details
#18UNKNOWN--1details
#19UNKNOWN--1details
#20UNKNOWN--1details
#21UNKNOWN--1details
#22UNKNOWN--1details
#23UNKNOWN--1details
#24UNKNOWN--1details
#25UNKNOWN--1details
#26UNKNOWN--1details
#27UNKNOWN--1details
#28UNKNOWN--1details
#29UNKNOWN--1details
#30UNKNOWN--1details
#31UNKNOWN--1details
#32UNKNOWN--1details
#33UNKNOWN--1details
#34UNKNOWN--1details
#35UNKNOWN--1details
#36UNKNOWN--2details
#37UNKNOWN--2details
#38UNKNOWN--2details
#39UNKNOWN--2details
#40UNKNOWN--2details
#41UNKNOWN--2details
#42UNKNOWN--2details
#43UNKNOWN--2details
#44UNKNOWN--2details
#45UNKNOWN--2details
#46UNKNOWN--3details
#47UNKNOWN--3details
#48UNKNOWN--3details
#49UNKNOWN--3details
#50UNKNOWN--3details
#51UNKNOWN--3details
#52UNKNOWN--3details
#53UNKNOWN--3details
#54UNKNOWN--3details
#55UNKNOWN--3details
#56UNKNOWN--3details
#57UNKNOWN--3details
#58UNKNOWN--3details
#59UNKNOWN--3details
#60UNKNOWN--3details
#61UNKNOWN--3details
#62UNKNOWN--3details
#63UNKNOWN--3details
#64UNKNOWN--3details
#65UNKNOWN--3details
#66UNKNOWN--3details
#67UNKNOWN--3details
#68UNKNOWN--3details
#69UNKNOWN--3details
#70UNKNOWN--3details
#71UNKNOWN--3details
#72UNKNOWN--3details
#73UNKNOWN--3details
#74UNKNOWN--3details
#75UNKNOWN--3details
#76UNKNOWN--3details
#77UNKNOWN--3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:45:4: warning: 'z' may be used uninitialized in this function [-Wmaybe-uninitialized]
    if (z == 2) at -= 1LL<<(n-c-1);
    ^~

Code

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("arch=skylake")
#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
 
#define M 1000000007
 
int n, m;
typedef long long ll;
 
ll v[101010];
bool w[12223334];
 
int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cin >> n >> m;
	for (int i = 0; i < m; i++) {
		cin >> v[i];
		if (v[i] <= 10000000) w[v[i]] = 1;
	}
	sort(v,v+m);
	ll at = 1LL<<(n-2);
	ll bt = 1LL<<(n-2);
	for (int i = 0; i < m; i++) {
		ll u = v[i];
		bool ok = true;
		int c = 0;
		ll z;
		while (u != 1) {
			c++;
			z = u;
			u /= 2;
			if (u <= 10000000) {
				if (w[u]) {ok = false; break;}
			} else {
				if (binary_search(v,v+i,u)) {ok = false; break;}
			}
		}
		if (ok) {
			if (z == 2) at -= 1LL<<(n-c-1);
			else bt -= 1LL<<(n-c-1);
		}
	}
	at %= M; bt %= M;
	ll uu = 2*at*bt%M;
	cout << uu << "\n";
}

Test details

Test 1

Group: 1

Verdict: UNKNOWN

input
4 3
10
5
13

correct output
12

user output
(not available)

Test 2

Group: 1

Verdict: UNKNOWN

input
2 0

correct output
2

user output
(not available)

Test 3

Group: 1

Verdict: UNKNOWN

input
2 1
2

correct output
0

user output
(not available)

Test 4

Group: 1

Verdict: UNKNOWN

input
2 1
3

correct output
0

user output
(not available)

Test 5

Group: 1

Verdict: UNKNOWN

input
2 2
2
3

correct output
0

user output
(not available)

Test 6

Group: 1

Verdict: UNKNOWN

input
6 0

correct output
512

user output
(not available)

Test 7

Group: 1

Verdict: UNKNOWN

input
6 1
29

correct output
448

user output
(not available)

Test 8

Group: 1

Verdict: UNKNOWN

input
6 1
63

correct output
480

user output
(not available)

Test 9

Group: 1

Verdict: UNKNOWN

input
6 10
50
63
56
5
...

correct output
132

user output
(not available)

Test 10

Group: 1

Verdict: UNKNOWN

input
6 10
25
57
62
42
...

correct output
162

user output
(not available)

Test 11

Group: 1

Verdict: UNKNOWN

input
6 10
14
26
34
42
...

correct output
126

user output
(not available)

Test 12

Group: 1

Verdict: UNKNOWN

input
6 10
21
60
23
59
...

correct output
128

user output
(not available)

Test 13

Group: 1

Verdict: UNKNOWN

input
6 10
8
30
32
16
...

correct output
0

user output
(not available)

Test 14

Group: 1

Verdict: UNKNOWN

input
6 20
46
39
55
24
...

correct output
48

user output
(not available)

Test 15

Group: 1

Verdict: UNKNOWN

input
6 25
36
23
27
33
...

correct output
4

user output
(not available)

Test 16

Group: 1

Verdict: UNKNOWN

input
6 62
42
11
4
61
...

correct output
0

user output
(not available)

Test 17

Group: 1

Verdict: UNKNOWN

input
6 32
62
38
57
35
...

correct output
0

user output
(not available)

Test 18

Group: 1

Verdict: UNKNOWN

input
6 21
38
51
47
35
...

correct output
60

user output
(not available)

Test 19

Group: 1

Verdict: UNKNOWN

input
6 31
59
15
3
26
...

correct output
0

user output
(not available)

Test 20

Group: 1

Verdict: UNKNOWN

input
6 14
13
53
55
26
...

correct output
256

user output
(not available)

Test 21

Group: 1

Verdict: UNKNOWN

input
5 10
5
17
21
7
...

correct output
6

user output
(not available)

Test 22

Group: 1

Verdict: UNKNOWN

input
6 5
38
18
31
44
...

correct output
312

user output
(not available)

Test 23

Group: 1

Verdict: UNKNOWN

input
3 0

correct output
8

user output
(not available)

Test 24

Group: 1

Verdict: UNKNOWN

input
3 1
2

correct output
0

user output
(not available)

Test 25

Group: 1

Verdict: UNKNOWN

input
3 1
3

correct output
0

user output
(not available)

Test 26

Group: 1

Verdict: UNKNOWN

input
3 2
4
6

correct output
2

user output
(not available)

Test 27

Group: 1

Verdict: UNKNOWN

input
3 2
4
7

correct output
2

user output
(not available)

Test 28

Group: 1

Verdict: UNKNOWN

input
3 2
5
6

correct output
2

user output
(not available)

Test 29

Group: 1

Verdict: UNKNOWN

input
3 2
5
7

correct output
2

user output
(not available)

Test 30

Group: 1

Verdict: UNKNOWN

input
3 2
3
6

correct output
0

user output
(not available)

Test 31

Group: 1

Verdict: UNKNOWN

input
3 3
4
5
6

correct output
0

user output
(not available)

Test 32

Group: 1

Verdict: UNKNOWN

input
3 3
4
6
7

correct output
0

user output
(not available)

Test 33

Group: 1

Verdict: UNKNOWN

input
3 4
4
5
6
7

correct output
0

user output
(not available)

Test 34

Group: 1

Verdict: UNKNOWN

input
5 0

correct output
128

user output
(not available)

Test 35

Group: 1

Verdict: UNKNOWN

input
5 1
14

correct output
96

user output
(not available)

Test 36

Group: 2

Verdict: UNKNOWN

input
2 0

correct output
2

user output
(not available)

Test 37

Group: 2

Verdict: UNKNOWN

input
3 0

correct output
8

user output
(not available)

Test 38

Group: 2

Verdict: UNKNOWN

input
4 0

correct output
32

user output
(not available)

Test 39

Group: 2

Verdict: UNKNOWN

input
23 0

correct output
92960636

user output
(not available)

Test 40

Group: 2

Verdict: UNKNOWN

input
36 0

correct output
635008130

user output
(not available)

Test 41

Group: 2

Verdict: UNKNOWN

input
42 0

correct output
993282280

user output
(not available)

Test 42

Group: 2

Verdict: UNKNOWN

input
57 0

correct output
608377687

user output
(not available)

Test 43

Group: 2

Verdict: UNKNOWN

input
58 0

correct output
433510734

user output
(not available)

Test 44

Group: 2

Verdict: UNKNOWN

input
59 0

correct output
734042929

user output
(not available)

Test 45

Group: 2

Verdict: UNKNOWN

input
60 0

correct output
936171702

user output
(not available)

Test 46

Group: 3

Verdict: UNKNOWN

input
2 0

correct output
2

user output
(not available)

Test 47

Group: 3

Verdict: UNKNOWN

input
2 1
2

correct output
0

user output
(not available)

Test 48

Group: 3

Verdict: UNKNOWN

input
2 1
3

correct output
0

user output
(not available)

Test 49

Group: 3

Verdict: UNKNOWN

input
2 2
2
3

correct output
0

user output
(not available)

Test 50

Group: 3

Verdict: UNKNOWN

input
59 0

correct output
734042929

user output
(not available)

Test 51

Group: 3

Verdict: UNKNOWN

input
60 0

correct output
936171702

user output
(not available)

Test 52

Group: 3

Verdict: UNKNOWN

input
60 1
2

correct output
0

user output
(not available)

Test 53

Group: 3

Verdict: UNKNOWN

input
60 1
576460752303423487

correct output
399775198

user output
(not available)

Test 54

Group: 3

Verdict: UNKNOWN

input
60 1
1152921504606846975

correct output
667973450

user output
(not available)

Test 55

Group: 3

Verdict: UNKNOWN

input
60 100000
793144025126277478
493960657696318193
320344157019848454
997683950258055349
...

correct output
12813436

user output
(not available)

Test 56

Group: 3

Verdict: UNKNOWN

input
60 100000
986789393060040220
494066507202684187
290830182157570659
210871095549437400
...

correct output
95910570

user output
(not available)

Test 57

Group: 3

Verdict: UNKNOWN

input
60 100000
562299894758506682
731132428235172865
481500339045425690
208947005967360560
...

correct output
331624281

user output
(not available)

Test 58

Group: 3

Verdict: UNKNOWN

input
60 100000
257846911019866261
803021202233459674
658685893766403373
874237705485665885
...

correct output
880725152

user output
(not available)

Test 59

Group: 3

Verdict: UNKNOWN

input
60 100000
681388061028265547
990382999862855868
290694941402209648
491574111397234946
...

correct output
768320742

user output
(not available)

Test 60

Group: 3

Verdict: UNKNOWN

input
60 100000
816968727394104576
879176301780517486
1075817811951859004
632046213104404023
...

correct output
111155168

user output
(not available)

Test 61

Group: 3

Verdict: UNKNOWN

input
60 100000
406817930303406656
101704482575856800
406817930303412346
813635860606874021
...

correct output
295651662

user output
(not available)

Test 62

Group: 3

Verdict: UNKNOWN

input
59 100000
234885934259928845
244746379456935555
40048493361902167
530369614866009610
...

correct output
78892926

user output
(not available)

Test 63

Group: 3

Verdict: UNKNOWN

input
16 65534
26355
15205
3420
22822
...

correct output
0

user output
(not available)

Test 64

Group: 3

Verdict: UNKNOWN

input
60 99999
1030879879260090869
925369330408563145
403438777989811739
321883235203598800
...

correct output
596899803

user output
(not available)

Test 65

Group: 3

Verdict: UNKNOWN

input
60 100000
418885324976523921
418885324976523063
837770649953084829
104721331244134167
...

correct output
0

user output
(not available)

Test 66

Group: 3

Verdict: UNKNOWN

input
43 100000
5497882741157
4163319796881
3705445016042
8647080351851
...

correct output
317037701

user output
(not available)

Test 67

Group: 3

Verdict: UNKNOWN

input
3 0

correct output
8

user output
(not available)

Test 68

Group: 3

Verdict: UNKNOWN

input
3 1
2

correct output
0

user output
(not available)

Test 69

Group: 3

Verdict: UNKNOWN

input
3 1
3

correct output
0

user output
(not available)

Test 70

Group: 3

Verdict: UNKNOWN

input
3 2
4
6

correct output
2

user output
(not available)

Test 71

Group: 3

Verdict: UNKNOWN

input
3 2
4
7

correct output
2

user output
(not available)

Test 72

Group: 3

Verdict: UNKNOWN

input
3 2
5
6

correct output
2

user output
(not available)

Test 73

Group: 3

Verdict: UNKNOWN

input
3 2
5
7

correct output
2

user output
(not available)

Test 74

Group: 3

Verdict: UNKNOWN

input
3 2
3
6

correct output
0

user output
(not available)

Test 75

Group: 3

Verdict: UNKNOWN

input
3 3
4
5
6

correct output
0

user output
(not available)

Test 76

Group: 3

Verdict: UNKNOWN

input
3 3
4
6
7

correct output
0

user output
(not available)

Test 77

Group: 3

Verdict: UNKNOWN

input
3 4
4
5
6
7

correct output
0

user output
(not available)