Submission #71876

# Submission time Handle Problem Language Result Execution time Memory
71876 2018-08-25T18:07:31 Z :p(#2229, exqt) The Ant Doing Hard Work (FXCUP3_ant) C++11
Compilation error
0 ms 0 KB
#include "ant.h"
#include <algorithm>
#include <utility>
using namespace std;

int FindK()
{
  int l = 1, r = 99999999;
  int res = 99999999;
  vector<pair<int, int>> logs;

  while(l<r)
  {
    int t = (l+r)/2;
    int cnt = DeliverCount(t);

    logs.push_back({t, cnt});

    if(cnt > 0)
    {
      res = min(res, t);
      r = t - 1;
    } else l = t + 1;
  }

  bool ok = true;
  for(auto log : logs)
  {
    if(log.first/l != log.second) ok = false;
  }

	return ok ? l : res;
}

Compilation message

ant.cpp: In function 'int FindK()':
ant.cpp:10:3: error: 'vector' was not declared in this scope
   vector<pair<int, int>> logs;
   ^~~~~~
ant.cpp:10:3: note: suggested alternative: 'qecvt_r'
   vector<pair<int, int>> logs;
   ^~~~~~
   qecvt_r
ant.cpp:10:23: error: expected primary-expression before '>' token
   vector<pair<int, int>> logs;
                       ^~
ant.cpp:10:26: error: 'logs' was not declared in this scope
   vector<pair<int, int>> logs;
                          ^~~~
ant.cpp:10:26: note: suggested alternative: 'labs'
   vector<pair<int, int>> logs;
                          ^~~~
                          labs
ant.cpp:27:18: error: unable to deduce 'auto&&' from 'logs'
   for(auto log : logs)
                  ^~~~