Submission #2944654


Source Code Expand

/**
 * File    : D.cpp
 * Author  : Kazune Takahashi
 * Created : 2018-8-4 21:41:00
 * Powered by Visual Studio Code
 */

#include <iostream>
#include <iomanip>   // << fixed << setprecision(xxx)
#include <algorithm> // do { } while ( next_permutation(A, A+xxx) ) ;
#include <vector>
#include <string> // to_string(nnn) // substr(m, n) // stoi(nnn)
#include <complex>
#include <tuple>
#include <queue>
#include <stack>
#include <map> // if (M.find(key) != M.end()) { }
#include <set>
#include <functional>
#include <random> // auto rd = bind(uniform_int_distribution<int>(0, 9), mt19937(19920725));
#include <chrono> // std::chrono::system_clock::time_point start_time, end_time;
// start = std::chrono::system_clock::now();
// double elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end_time-start_time).count();
#include <cctype>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
using namespace std;

#define DEBUG 0 // change 0 -> 1 if we need debug.

typedef long long ll;

// const int dx[4] = {1, 0, -1, 0};
// const int dy[4] = {0, 1, 0, -1};

// const int C = 1e6+10;

int N, M;
int cnt[1010][1010];

int rev(int k)
{
  string S = to_string(k);
  reverse(S.begin(), S.end());
  return stoi(S);
}

int calc(int x, int y)
{
  if (cnt[x][y] != -1)
  {
    return cnt[x][y];
  }
  if (x == 0 || y == 0)
  {
    return cnt[x][y] = 0;
  }
  cnt[x][y] = -2;
  int new_x = x;
  int new_y = y;
  if (x < y)
  {
    new_x = rev(new_x);
  }
  else
  {
    new_y = rev(new_y);
  }
  if (new_x < new_y)
  {
    new_y = new_y - new_x;
  }
  else
  {
    new_x = new_x - new_y;
  }
  int k = calc(new_x, new_y);
  if (k == -2)
  {
    return cnt[x][y] = -2;
  }
  else
  {
    return cnt[x][y] = k + 1;
  }
}

int main()
{
  cin >> N >> M;
  fill(&cnt[0][0], &cnt[0][0] + 1010 * 1010, -1);
  int ans = 0;
  for (auto i = 1; i <= N; i++)
  {
    for (auto j = 1; j <= M; j++)
    {
      if (calc(i, j) == -2)
      {
        if (ans < 100)
        {
          cerr << "(" << i << ", " << j << ")" << endl;
        }
        ans++;
      }
    }
  }
  cout << ans << endl;
}

Submission Info

Submission Time
Task D - うほょじご
User kazunetakahashi
Language C++14 (GCC 5.4.1)
Score 400
Code Size 2214 Byte
Status AC
Exec Time 179 ms
Memory 4224 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 19
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 179 ms 4224 KB
02.txt AC 3 ms 4224 KB
03.txt AC 113 ms 4224 KB
04.txt AC 5 ms 4224 KB
05.txt AC 5 ms 4224 KB
06.txt AC 3 ms 4224 KB
07.txt AC 3 ms 4224 KB
08.txt AC 178 ms 4224 KB
09.txt AC 9 ms 4224 KB
10.txt AC 148 ms 4224 KB
11.txt AC 179 ms 4224 KB
12.txt AC 4 ms 4224 KB
13.txt AC 3 ms 4224 KB
14.txt AC 56 ms 4224 KB
15.txt AC 3 ms 4224 KB
16.txt AC 73 ms 4224 KB
s1.txt AC 3 ms 4224 KB
s2.txt AC 3 ms 4224 KB
s3.txt AC 20 ms 4224 KB