Problem | segmenttree |
---|---|
User | JoshJuice |
Submission Time | 2025-03-16 01:12:02 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
segmenttree.cpp: In function ‘int main()’:
segmenttree.cpp:212:29: error: no matching function for call to ‘SegmentTree::SegmentTree(int&, int [N])’
212 | SegmentTree segTree(N, A);
| ^
segmenttree.cpp:8:5: note: candidate: ‘SegmentTree::SegmentTree(int, ll*)’
8 | SegmentTree(int n, ll* A) {
| ^~~~~~~~~~~
segmenttree.cpp:8:28: note: no known conversion for argument 2 from ‘int [N]’ to ‘ll*’ {aka ‘long long int*’}
8 | SegmentTree(int n, ll* A) {
| ~~~~^
segmenttree.cpp:5:7: note: candidate: ‘constexpr SegmentTree::SegmentTree(const SegmentTree&)’
5 | class SegmentTree {
| ^~~~~~~~~~~
segmenttree.cpp:5:7: note: candidate expects 1 argument, 2 provided