Problem segmenttree2
User Random52
Submission Time 2024-12-30 11:30:33
Score 0
Max Time N/A
Max Memory N/A

Compile Error

segmenttree2.cpp:1:1: error: ‘include’ does not name a type
1 | include <iostream>
| ^~~~~~~
segmenttree2.cpp: In function ‘int main()’:
segmenttree2.cpp:96:10: error: ‘std::ios’ has not been declared
96 | std::ios::sync_with_stdio(false);
| ^~~
segmenttree2.cpp:97:10: error: ‘cin’ is not a member of ‘std’
97 | std::cin.tie(nullptr);
| ^~~
segmenttree2.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | include <iostream>
segmenttree2.cpp:99:5: error: ‘uint32_t’ was not declared in this scope
99 | uint32_t n, q;
| ^~~~~~~~
segmenttree2.cpp:101:10: error: ‘cin’ is not a member of ‘std’
101 | std::cin >> n >> q;
| ^~~
segmenttree2.cpp:101:10: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget t