結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー pirozhkipirozhki
提出日時 2019-10-14 07:27:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 890 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 91,336 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-02 07:01:48
合計ジャッジ時間 9,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 1,014 ms
6,940 KB
testcase_03 AC 835 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 212 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 52 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 26 ms
6,940 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 127 ms
6,940 KB
testcase_35 AC 1,081 ms
6,940 KB
testcase_36 AC 560 ms
6,940 KB
testcase_37 AC 1,074 ms
6,940 KB
testcase_38 AC 1,077 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
using namespace std;

int main() {
	int n; cin >> n;
	vector<pair<int,int>> table(n+1);
	for (int i = 1; i <= n; i++) {
		vector<pair<int, int>> v;
		int rt = static_cast<int>(sqrt(i));
		for (int j = 1; j <= rt; j += 2) {
			v.emplace_back(make_pair(j, j + table[i - j * j].second));
		}
		for (int j = rt - rt % 2; j > 0; j -= 2) {
			v.emplace_back(make_pair(j, j + table[i - j * j].second));
		}
		int k = distance(v.begin(), min_element(v.begin(), v.end(), [](auto a, auto b) { return a.second < b.second; }));
		table[i].first = v[k].first;
		table[i].second = table[i].first + table[i - table[i].first * table[i].first].second;
	}

	bool b = 0;
	for (int i = n; i > 0; i -= table[i].first*table[i].first) {
		for (int j = 0; j < table[i].first; j++) {
			cout << b;
			b ^= 1;
		}
		b ^= 1;
	}
	return 0;
}
0