0_0_39351161_21183.cpp: In function 'void dickdreamer()':
0_0_39351161_21183.cpp:79:14: error: invalid conversion from 'int64_t' {aka 'long long int'} to 'int64_t*' {aka 'long long int*'} [-fpermissive]
79 | if (find(i) != find(1))
| ^
| |
| int64_t {aka long long int}
0_0_39351161_21183.cpp:79:13: error: too few arguments to function 'int64_t find(int64_t*, int64_t)'
79 | if (find(i) != find(1))
| ~~~~^~~
0_0_39351161_21183.cpp:16:5: note: declared here
16 | int find(int *fa, int x) { return x == fa[x] ? x : fa[x] = find(fa, fa[x]); }
| ^~~~
0_0_39351161_21183.cpp:79:25: error: invalid conversion from 'int' to 'int64_t*' {aka 'long long int*'} [-fpermissive]
79 | if (find(i) != find(1))
| ^
| |
| int
0_0_39351161_21183.cpp:79:24: error: too few arguments to function 'int64_t find(int64_t*, int64_t)'
79 | if (find(i) != find(1))
| ~~~~^~~
0_0_39351161_21183.cpp:16:5: note: declared here
16 | int find(int *fa, int x) { return x == fa[x] ? x : fa[x] = find(fa, fa[x]); }
| ^~~~
|