lamp.cpp:65:8: error: 'maxn' was not declared in this scope
65 | int dp[maxn][3];
| ^~~~
lamp.cpp:66:11: error: 'maxn' was not declared in this scope
66 | bool chan[maxn][3];
| ^~~~
lamp.cpp:68:8: error: 'maxn' was not declared in this scope
68 | char a[maxn];
| ^~~~
lamp.cpp:69:8: error: 'maxn' was not declared in this scope
69 | char b[maxn];
| ^~~~
lamp.cpp: In function 'int main()':
lamp.cpp:74:17: error: 'a' was not declared in this scope
74 | scanf("%s%s",a+1,b+1);
| ^
lamp.cpp:74:21: error: 'b' was not declared in this scope
74 | scanf("%s%s",a+1,b+1);
| ^
lamp.cpp:75:5: error: 'dp' was not declared in this scope
75 | dp[0][0] = 1;
| ^~
lamp.cpp:76:16: error: 'inf' was not declared in this scope; did you mean 'ynf'?
76 | dp[0][1] = inf;
| ^~~
| ynf
lamp.cpp:80:9: error: 'chan' was not declared in this scope; did you mean 'char'?
80 | chan[i][0] = (y!=0);
| ^~~~
| char
lamp.cpp:80:23: error: 'y' was not declared in this scope
80 | chan[i][0] = (y!=0);
| ^
lamp.cpp:90:48: error: no matching function for call to 'min(<brace-enclosed initializer list>)'
90 | int ans = min({dp[n][0], dp[n][1], dp[n][2]});
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/istream:38,
from /usr/include/c++/10/sstream:38,
from /usr/include/c++/10/complex:45,
from /usr/include/c++/10/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
from lamp.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
230 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: template argument deduction/substitution failed:
lamp.cpp:90:48: note: candidate expects 2 arguments, 1 provided
90 | int ans = min({dp[n][0], dp[n][1], dp[n][2]});
| ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
from /usr/include/c++/10/ios:40,
from /usr/include/c++/10/istream:38,
from /usr/include/c++/10/sstream:38,
from /usr/include/c++/10/complex:45,
from /usr/include/c++/10/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
from lamp.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
278 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: template argument deduction/substitution failed:
lamp.cpp:90:48: note: candidate expects 3 arguments, 1 provided
90 | int ans = min({dp[n][0], dp[n][1], dp[n][2]});
| ^
In file included from /usr/include/c++/10/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
from lamp.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
3468 | min(initializer_list<_Tp> __l)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: template argument deduction/substitution failed:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
3474 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: template argument deduction/substitution failed: