QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#21146#676. Travelling MerchantqwqCompile Error//C++982.0kb2022-03-01 22:22:132022-05-18 04:10:57

Details

answer.code:8:24: error: ‘>>’ should be ‘> >’ within a nested template argument list
    8 | vector<vector<long long>> dist;
      |                        ^~
      |                        > >
answer.code:9:24: error: ‘>>’ should be ‘> >’ within a nested template argument list
    9 | vector<vector<long long>> grid;
      |                        ^~
      |                        > >
answer.code:11:18: error: ‘>>’ should be ‘> >’ within a nested template argument list
   11 | vector<vector<int>> buy;
      |                  ^~
      |                  > >
answer.code:12:18: error: ‘>>’ should be ‘> >’ within a nested template argument list
   12 | vector<vector<int>> sell;
      |                  ^~
      |                  > >
answer.code:14:18: error: ‘>>’ should be ‘> >’ within a nested template argument list
   14 | vector<vector<int>> earn;
      |                  ^~
      |                  > >
answer.code: In function ‘bool test(long long int)’:
answer.code:18:33: error: ‘>>’ should be ‘> >’ within a nested template argument list
   18 |   grid = vector<vector<long long>>(N, vector<long long>(N, LLONG_MAX/2));
      |                                 ^~
      |                                 > >
answer.code: In function ‘int main()’:
answer.code:58:33: error: ‘>>’ should be ‘> >’ within a nested template argument list
   58 |   dist = vector<vector<long long>>(N, vector<long long>(N, LLONG_MAX/2));
      |                                 ^~
      |                                 > >
answer.code:59:26: error: ‘>>’ should be ‘> >’ within a nested template argument list
   59 |   buy = vector<vector<int>>(N, vector<int>(K, -1));
      |                          ^~
      |                          > >
answer.code:60:27: error: ‘>>’ should be ‘> >’ within a nested template argument list
   60 |   sell = vector<vector<int>>(N, vector<int>(K, -1));
      |                           ^~
      |                           > >
answer.code:61:27: error: ‘>>’ should be ‘> >’ within a nested template argument list
   61 |   earn = vector<vector<int>>(N, vector<int>(N, 0));
      |                           ^~
      |                           > >