結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー hamrayhamray
提出日時 2020-03-30 21:27:23
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 6,780 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 164,760 KB
実行使用メモリ 22,324 KB
最終ジャッジ日時 2023-09-05 07:30:09
合計ジャッジ時間 6,726 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 4 ms
5,916 KB
testcase_06 AC 4 ms
6,036 KB
testcase_07 AC 3 ms
5,880 KB
testcase_08 WA -
testcase_09 AC 3 ms
5,956 KB
testcase_10 AC 3 ms
6,036 KB
testcase_11 AC 4 ms
5,868 KB
testcase_12 AC 22 ms
7,780 KB
testcase_13 AC 4 ms
5,964 KB
testcase_14 AC 4 ms
6,040 KB
testcase_15 AC 4 ms
5,944 KB
testcase_16 AC 3 ms
5,912 KB
testcase_17 AC 4 ms
5,948 KB
testcase_18 AC 4 ms
5,944 KB
testcase_19 AC 4 ms
5,972 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 4 ms
5,972 KB
testcase_24 AC 4 ms
5,948 KB
testcase_25 AC 4 ms
6,140 KB
testcase_26 AC 3 ms
6,040 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 6 ms
6,256 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//typedef
//-------------------------#include <bits/stdc++.h>

const double pi = 3.141592653589793238462643383279;

using namespace std;

//conversion
//------------------------------------------
inline int toInt(string s)
{
  int v;
  istringstream sin(s);
  sin >> v;
  return v;
}
template <class T>
inline string toString(T x)
{
  ostringstream sout;
  sout << x;
  return sout.str();
}
inline int readInt()
{
  int x;
  scanf("%d", &x);
  return x;
}

//typedef
//------------------------------------------
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef pair<long long, long long> PLL;
typedef pair<int, PII> TIII;
typedef long long LL;
typedef unsigned long long ULL;
typedef vector<LL> VLL;
typedef vector<VLL> VVLL;

//container util

//------------------------------------------
#define ALL(a) (a).begin(), (a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SQ(a) ((a) * (a))
#define EACH(i, c) for (typeof((c).begin()) i = (c).begin(); i != (c).end(); ++i)
#define EXIST(s, e) ((s).find(e) != (s).end())
#define SORT(c) sort((c).begin(), (c).end())

//repetition
//------------------------------------------
#define FOR(i, s, n) for (int i = s; i < (int)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define MOD 1000000007

#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto &a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()

typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
const double EPS = 1E-8;

#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)

class UnionFind
{
public:
  vector<int> par;
  vector<int> siz;

  UnionFind(int sz_) : par(sz_), siz(sz_, 1)
  {
    for (ll i = 0; i < sz_; ++i)
      par[i] = i;
  }
  void init(int sz_)
  {
    par.resize(sz_);
    siz.assign(sz_, 1LL);
    for (ll i = 0; i < sz_; ++i)
      par[i] = i;
  }

  int root(int x)
  {
    while (par[x] != x)
    {
      x = par[x] = par[par[x]];
    }
    return x;
  }

  bool merge(int x, int y)
  {
    x = root(x);
    y = root(y);
    if (x == y)
      return false;
    if (siz[x] < siz[y])
      swap(x, y);
    siz[x] += siz[y];
    par[y] = x;
    return true;
  }

  bool issame(int x, int y)
  {
    return root(x) == root(y);
  }

  int size(int x)
  {
    return siz[root(x)];
  }
};

ll modPow(ll x, ll n, ll mod = MOD)
{
  ll res = 1;
  while (n)
  {
    if (n & 1)
      res = (res * x) % mod;

    res %= mod;
    x = x * x % mod;
    n >>= 1;
  }
  return res;
}

#define SIEVE_SIZE 5000000 + 10
bool sieve[SIEVE_SIZE];
void makeSieve()
{
  for (int i = 0; i < SIEVE_SIZE; ++i)
    sieve[i] = true;
  sieve[0] = sieve[1] = false;
  for (int i = 2; i * i < SIEVE_SIZE; ++i)
    if (sieve[i])
      for (int j = 2; i * j < SIEVE_SIZE; ++j)
        sieve[i * j] = false;
}

bool isprime(ll n)
{
  if (n == 0 || n == 1)
    return false;
  for (ll i = 2; i * i <= n; ++i)
    if (n % i == 0)
      return false;
  return true;
}

const int MAX = 2000010;
long long fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit()
{
  fac[0] = fac[1] = 1;
  finv[0] = finv[1] = 1;
  inv[1] = 1;
  for (int i = 2; i < MAX; i++)
  {
    fac[i] = fac[i - 1] * i % MOD;
    inv[i] = MOD - inv[MOD % i] * (MOD / i) % MOD;
    finv[i] = finv[i - 1] * inv[i] % MOD;
  }
}

// 二項係数計算
long long COM(int n, int k)
{
  if (n < k)
    return 0;
  if (n < 0 || k < 0)
    return 0;
  return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

long long extGCD(long long a, long long b, long long &x, long long &y)
{
  if (b == 0)
  {
    x = 1;
    y = 0;
    return a;
  }
  long long d = extGCD(b, a % b, y, x);
  y -= a / b * x;
  return d;
}
// 負の数にも対応した mod (a = -11 とかでも OK)
inline long long mod(long long a, long long m)
{
  return (a % m + m) % m;
}

// 逆元計算 (ここでは a と m が互いに素であることが必要)
long long modinv(long long a, long long m)
{
  long long x, y;
  extGCD(a, m, x, y);
  return mod(x, m); // 気持ち的には x % m だが、x が負かもしれないので
}
ll GCD(ll a, ll b)
{

  if (b == 0)
    return a;
  return GCD(b, a % b);
}

typedef vector<ll> vec;
typedef vector<vec> mat;

mat mul(mat &A, mat &B)
{
  mat C(A.size(), vec((int)B[0].size()));
  for (int i = 0; i < A.size(); ++i)
  {
    for (int k = 0; k < B.size(); ++k)
    {
      for (int j = 0; j < B[0].size(); ++j)
      {
        C[i][j] = (C[i][j] + A[i][k] * B[k][j] % MOD) % MOD;
      }
    }
  }
  return C;
}
mat matPow(mat A, ll n)
{
  mat B(A.size(), vec((int)A.size()));

  for (int i = 0; i < A.size(); ++i)
  {
    B[i][i] = 1;
  }

  while (n > 0)
  {
    if (n & 1)
      B = mul(B, A);
    A = mul(A, A);
    n >>= 1;
  }
  return B;
}

bool comp(string &a, string &b)
{
  if (a.size() > b.size())
    return false;
  else if (a.size() < b.size())
    return true;

  for (int i = 0; i < min(a.size(), b.size()); i++)
  {
    if (a[i] == '0' && b[i] == '1')
      return true;
    else if (a[i] == '1' && b[i] == '0')
      return false;
  }

  return true;
}

//iを取るときの最小の長さ
ll dp1[300010];

//i番目まで見た時の値(復元用)
ll dp2[300010];

int main()
{
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(20);

  ll N;
  cin >> N;
  for (int i = 0; i <= N; i++)
    dp1[i] = INT_MAX;

  map<int, int> root2; /* これ要る????? */
  for (int i = 0; i <= 10000; i++)
  {
    root2[i * i] = i;
  }

  map<int, int> mp;

  dp1[0] = 0;
  for (int i = 0; i <= N; i++)
  {
    for (ll j = 1; j <= N; j++)
    {
      if (i + j * j > N)
        break;

      if (dp1[i + j * j] > dp1[i] + j)
      {

        mp[i + j * j] = i;
        dp1[i + j * j] = dp1[i] + j;
      }
    }
  }
  //cout << dp1[N] << endl;

  int pos = N;
  vector<int> v;
  while (pos != 0)
  {
    int t = mp[pos];
    v.push_back(root2[pos - t]);
    //cout << pos - t << endl;
    pos = t;
  }
  //cout << pos << endl;

  // for (auto e : v)
  // {
  //   cout << e << endl;
  // }
  reverse(all(v));

  string ans = "";

  for (int i = 0; i < v.size(); i++)
  {
    char c;
    if (ans == "")
    {
      c = '0';
    }
    else
    {
      c = ans[ans.size() - 1];
    }

    if (c == '0')
    {
      for (int j = 0; j < v[i]; j++)
      {
        if (j & 1)
        {
          ans += '1';
        }
        else
        {
          ans += '0';
        }
      }
    }
    else
    {
      for (int j = 0; j < v[i]; j++)
      {
        if (j & 1)
        {
          ans += '0';
        }
        else
        {
          ans += '1';
        }
      }
    }
  }
  cout << ans << endl;
  return 0;
}
0