Блог пользователя luka25

Автор luka25, история, 8 лет назад, По-английски

I've come across to weird thing, the problem itself is easy but I don't understand how to read input.I know only solving codeforces like problems so could anybody explain how to do it?

https://paradox.kattis.com/problems/paradoxpath

  • Проголосовать: нравится
  • -12
  • Проголосовать: не нравится

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

You should send only the implementation of that function. Good luck!

»
8 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

What you submit should look something like:

int FindPath(const int nStartX, const int nStartY, const int nTargetX const int nTargetY, const unsigned char* pMap, const int nMapWidth, const int nMapHeight, int* pOutBuffer, const int nOutBufferSize){
    //Do some calculations
    return ans;
}