0_0_38813491_9629.cpp: In function 'int DFS(int, int)':
0_0_38813491_9629.cpp:23:29: error: 'amp' was not declared in this scope
23 | if(x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && data[x1][y1] > data[x][y]) // 判断x1,y1坐标点是否再定义范围内。
| ^~~
0_0_38813491_9629.cpp:23:37: error: expected ')' before ';' token
23 | if(x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && data[x1][y1] > data[x][y]) // 判断x1,y1坐标点是否再定义范围内。
| ~ ^
| )
0_0_38813491_9629.cpp:23:47: error: 'amp' was not declared in this scope
23 | if(x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && data[x1][y1] > data[x][y]) // 判断x1,y1坐标点是否再定义范围内。
| ^~~
0_0_38813491_9629.cpp:23:94: error: reference to 'data' is ambiguous
23 | if(x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && data[x1][y1] > data[x][y]) // 判断x1,y1坐标点是否再定义范围内。
| ^~~~
In file included from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string:53,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h:40,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h:41,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ios:44,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ostream:40,
from gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iostream:41,
from 0_0_38813491_9629.cpp:1:
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:346:5: note: candidates are: 'template<class _Tp> constexpr const _Tp* std::data(initializer_list<_Tp>)'
346 | data(initializer_list<_Tp> __il) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:336:5: note: 'template<class _Tp, long long unsigned int _Nm> constexpr _Tp* std::data(_Tp (&)[_Nm])'
336 | data(_Tp (&__array)[_Nm]) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:325:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(const _Container&)'
325 | data(const _Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:314:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(_Container&)'
314 | data(_Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
0_0_38813491_9629.cpp:8:5: note: 'int data [111][111]'
8 | int data[N][N],dp[N][N]; // 定义数据二维数组, (data表示此坐标的奶个数,dp表示已经探索的格子的奶酪个数的总数)
| ^~~~
0_0_38813491_9629.cpp:23:109: error: reference to 'data' is ambiguous
23 | if(x1 >= 0 && x1 < n && y1 >= 0 && y1 < n && data[x1][y1] > data[x][y]) // 判断x1,y1坐标点是否再定义范围内。
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:346:5: note: candidates are: 'template<class _Tp> constexpr const _Tp* std::data(initializer_list<_Tp>)'
346 | data(initializer_list<_Tp> __il) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:336:5: note: 'template<class _Tp, long long unsigned int _Nm> constexpr _Tp* std::data(_Tp (&)[_Nm])'
336 | data(_Tp (&__array)[_Nm]) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:325:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(const _Container&)'
325 | data(const _Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:314:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(_Container&)'
314 | data(_Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
0_0_38813491_9629.cpp:8:5: note: 'int data [111][111]'
8 | int data[N][N],dp[N][N]; // 定义数据二维数组, (data表示此坐标的奶个数,dp表示已经探索的格子的奶酪个数的总数)
| ^~~~
0_0_38813491_9629.cpp:32:29: error: reference to 'data' is ambiguous
32 | dp[x][y] = maxnum + data[x][y]; // 最后获得奶酪数最大的值为沿途的的奶酪数相加。
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:346:5: note: candidates are: 'template<class _Tp> constexpr const _Tp* std::data(initializer_list<_Tp>)'
346 | data(initializer_list<_Tp> __il) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:336:5: note: 'template<class _Tp, long long unsigned int _Nm> constexpr _Tp* std::data(_Tp (&)[_Nm])'
336 | data(_Tp (&__array)[_Nm]) noexcept
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:325:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(const _Container&)'
325 | data(const _Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
gcc-13.1.0/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h:314:5: note: 'template<class _Container> constexpr decltype (__cont.data()) std::data(_Container&)'
314 | data(_Container& __cont) noexcept(noexcept(__cont.data()))
| ^~~~
0_0_38813491_9629.cpp:8:5: note: 'int data [111][111]'
8 | int data[N][N],dp[N][N]; // 定义数据二维数组, (data表示此坐标的奶个数,dp表示已经探索的格子的奶酪个数的总数)
| ^~~~
0_0_38813491_9629.cpp: In function 'int main()':
0_0_38813491_9629.cpp:39:27: error: 'amp' was not declared in this scope
39 | while (scanf("%d%d", &n, &k))
| ^~~
0_0_38813491_9629.cpp:39:30: error: expected ')' before ';' token
39 | while (scanf("%d%d", &n, &k))
| ~ ^
| )
0_0_38813491_9629.cpp:39:35: error: 'amp' was not declared in this scope
39 | while (scanf("%d%d", &n, &k))
| ^~~
0_0_38813491_9629.cpp:39:40: error: expected ';' before ')' token
39 | while (scanf("%d%d", &n, &k))
| ^
| ;
|