結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー tnakao0123tnakao0123
提出日時 2019-09-05 09:41:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 1,306 ms
コンパイル使用メモリ 84,032 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-11 14:04:21
合計ジャッジ時間 3,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
5,760 KB
testcase_01 AC 37 ms
5,248 KB
testcase_02 AC 163 ms
6,912 KB
testcase_03 AC 137 ms
6,528 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 34 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 6 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 21 ms
5,376 KB
testcase_35 AC 154 ms
6,988 KB
testcase_36 AC 80 ms
6,016 KB
testcase_37 AC 174 ms
7,168 KB
testcase_38 AC 160 ms
6,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:52:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   52 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 873.cc:  No.873 バイナリ、ヤバいなり!w - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 300000;
const int MAX_M = 600;
const int INF = 1 << 30;

/* typedef */

/* global variables */

int dp[MAX_N + 1];
int pmins[MAX_N + 1], pmaxs[MAX_N + 1];

/* subroutines */

bool ltprty(const int &a, const int &b) {
  int pa = (a & 1), pb = (b & 1);
  if (pa != pb) return (pa > pb); // odd < even
  return (pa ? (a < b) : (a > b));
}

/* main */

int main() {
  int n;
  scanf("%d", &n);

  dp[0] = 0;
  for (int i = 1; i <= n; i++) {
    dp[i] = INF;
    pmins[i] = 0, pmaxs[i] = -1;
    for (int j = 1; j * j <= i; j++) {
      int jj = j * j, d = dp[i - jj] + j;
      if (dp[i] > d)
	dp[i] = d, pmins[i] = pmaxs[i] = j;
      else if (dp[i] == d) {
	if (ltprty(j, pmins[i])) pmins[i] = j;
	if (ltprty(pmaxs[i], j)) pmaxs[i] = j;
      }
    }
  }
  //printf("%d\n", dp[n]);

  for (int m = n, pc = 0; m > 0;) {
    int k = (pc == 0) ? pmins[m] : pmaxs[m];

    //printf("%d ", k);
    for (int i = 0; i < k; i++) putchar(((pc + i) & 1) + '0');

    pc ^= ((k & 1) ^ 1);
    m -= k * k;
  }
  putchar('\n');
  return 0;
}
0