bootfall.cpp:12:22: error: stray '#' in program
vector<int> ans, vec;#include<iostream>
^
bootfall.cpp:12:23: error: 'include' does not name a type
vector<int> ans, vec;#include<iostream>
^
bootfall.cpp:19:11: error: redefinition of 'const int N'
const int N = 1e5 + 5;
^
bootfall.cpp:7:11: note: 'const int N' previously defined here
const int N = 1e5 + 5;
^
bootfall.cpp:23:5: error: redefinition of 'int n'
int n, a[505], dp1[105][10005], dp2[105][10005], sum;
^
bootfall.cpp:11:5: note: 'int n' previously declared here
int n, a[505], dp1[505][250005], dp2[505][250005], sum;
^
bootfall.cpp:23:13: error: redefinition of 'int a [505]'
int n, a[505], dp1[105][10005], dp2[105][10005], sum;
^
bootfall.cpp:11:8: note: 'int a [505]' previously declared here
int n, a[505], dp1[505][250005], dp2[505][250005], sum;
^
bootfall.cpp:23:30: error: conflicting declaration 'int dp1 [105][10005]'
int n, a[505], dp1[105][10005], dp2[105][10005], sum;
^
bootfall.cpp:11:16: note: previous declaration as 'int dp1 [505][250005]'
int n, a[505], dp1[505][250005], dp2[505][250005], sum;
^
bootfall.cpp:23:47: error: conflicting declaration 'int dp2 [105][10005]'
int n, a[505], dp1[105][10005], dp2[105][10005], sum;
^
bootfall.cpp:11:34: note: previous declaration as 'int dp2 [505][250005]'
int n, a[505], dp1[505][250005], dp2[505][250005], sum;
^
bootfall.cpp:23:50: error: redefinition of 'int sum'
int n, a[505], dp1[105][10005], dp2[105][10005], sum;
^
bootfall.cpp:11:52: note: 'int sum' previously declared here
int n, a[505], dp1[505][250005], dp2[505][250005], sum;
^
bootfall.cpp:24:13: error: redefinition of 'std::vector<int> ans'
vector<int> ans, vec;
^
bootfall.cpp:12:13: note: 'std::vector<int> ans' previously declared here
vector<int> ans, vec;#include<iostream>
^
bootfall.cpp:24:18: error: redefinition of 'std::vector<int> vec'
vector<int> ans, vec;
^
bootfall.cpp:12:18: note: 'std::vector<int> vec' previously declared here
vector<int> ans, vec;#include<iostream>
^
bootfall.cpp:112:19: error: conflicting declaration 'int dp [505][250005]'
int dp[505][250005];
^
bootfall.cpp:25:5: note: previous declaration as 'int dp [105][10005]'
int dp[105][10005];
^
bootfall.cpp:113:20: error: conflicting declaration 'bool us [505][250005]'
bool us[505][250005];
^
bootfall.cpp:26:6: note: previous declaration as 'bool us [105][10005]'
bool us[105][10005];
^
bootfall.cpp:114:17: error: conflicting declaration 'bool used [250005]'
bool used[250005];
^
bootfall.cpp:27:6: note: previous declaration as 'bool used [10005]'
bool used[10005];
^
bootfall.cpp: In function 'bool is(int, int)':
bootfall.cpp:116:6: error: redefinition of 'bool is(int, int)'
bool is(int s, int v) {
^
bootfall.cpp:29:6: note: 'bool is(int, int)' previously defined here
bool is(int s, int v) {
^
bootfall.cpp: In function 'int main()':
bootfall.cpp:130:5: error: redefinition of 'int main()'
int main() {
^
bootfall.cpp:43:5: note: 'int main()' previously defined here
int main() {
^