結果
問題 | No.873 バイナリ、ヤバいなり!w |
ユーザー |
|
提出日時 | 2019-08-30 22:20:43 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 998 bytes |
コンパイル時間 | 1,747 ms |
コンパイル使用メモリ | 171,936 KB |
実行使用メモリ | 663,104 KB |
最終ジャッジ日時 | 2024-06-24 01:38:22 |
合計ジャッジ時間 | 11,474 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 MLE * 5 |
ソースコード
#include <bits/stdc++.h>#include <vector>using namespace std;#define REP(i,n) for (int i=0;i<(n);i++)#define REP2(i,m,n) for (int i=m;i<(n);i++)typedef long long ll;int N;ll dp[303030];vector<int> ans[303030];vector<int> tmp;void solve() {cin >> N;REP(i, N+1) dp[i] = 1LL << 59;dp[0] = 0;REP(i, N) for (ll j = 1; i + j * j <= N; ++j) {if (dp[i] + j < dp[i + j * j]) {dp[i + j * j] = dp[i] + j;ans[i + j * j] = ans[i];int last = i == 0 ? 0 : ans[i].back();REP(_, j) ans[i + j * j].push_back(last), last ^= 1;} else if (dp[i] + j == dp[i + j * j]) {tmp = ans[i];int last = i == 0 ? 0 : ans[i].back();REP(_, j) tmp.push_back(last), last ^= 1;ans[i + j * j] = min(ans[i + j * j], tmp);}}REP(i, ans[N].size()) cout << ans[N][i];cout << "\n";}int main() {cin.tie(0);ios::sync_with_stdio(false);solve();}