結果
| 問題 | No.873 バイナリ、ヤバいなり!w |
| コンテスト | |
| ユーザー |
T1610
|
| 提出日時 | 2020-07-29 15:27:01 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,348 bytes |
| コンパイル時間 | 2,432 ms |
| コンパイル使用メモリ | 204,600 KB |
| 最終ジャッジ日時 | 2025-01-12 07:35:09 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 35 WA * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) REP(i,0,n)
#define REP(i,s,e) for(int i=(s); i<(int)(e); i++)
#define repr(i, n) REPR(i, n, 0)
#define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--)
#define all(r) r.begin(),r.end()
#define rall(r) r.rbegin(),r.rend()
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
const ll INF = 1e18;
const ll MOD = 1e9 + 7;
template<typename T> T chmax(T& a, const T& b){return a = (a > b ? a : b);}
template<typename T> T chmin(T& a, const T& b){return a = (a < b ? a : b);}
// #define DEBUG_MODE
#ifdef DEBUG_MODE
#define dump(x) cout << #x << " : " << x << " "
#define dumpL(x) cout << #x << " : " << x << '\n'
#define LINE cout << "line : " << __LINE__ << " "
#define LINEL cout << "line : " << __LINE__ << '\n'
#define dumpV(v) cout << #v << " : ["; for(auto& t : v) cout << t << ", "; cout<<"]" << " "
#define dumpVL(v) cout << #v << " : ["; for(auto& t : v) cout << t << ", "; cout<<"]" << endl
#define STOP assert(false)
#else
#define dump(x)
#define dumpL(x)
#define LINE
#define LINEL
#define dumpV(v)
#define dumpVL(v)
#define STOP assert(false)
#endif
#define mp make_pair
namespace std {
template<class S, class T>
ostream &operator <<(ostream& out, const pair<S, T>& a) {
out << '(' << a.fi << ", " << a.se << ')';
return out;
}
}
vi calc(int n) {
vi dp(n+10, 1e9);
dp[0] = 0;
using P = pair<int, int>;
vector<P> tmp(dp.size());
rep(i, dp.size()) {
for(int j = 1; j*j+i < (int)dp.size(); ++j) {
if(dp[i+j*j] >= dp[i] + j) {
dp[i+j*j] = dp[i] + j;
tmp[i+j*j] = {i, j};
}
}
}
vi ret;
int cur = n;
while(cur > 0) {
ret.emplace_back(tmp[cur].second);
cur = tmp[cur].first;
}
return ret;
}
int main(){
int n;
cin >> n;
auto v = calc(n);
sort(all(v));
dumpVL(v);
string str;
while((int)str.size() < v.back()+10) {
char c = ('0' + (str.size()%2));
str += c;
}
string ans;
do {
string tmp;
for(auto&& sz: v) {
tmp += str.substr((tmp.empty()||tmp.back() == '0') ? 0 : 1, sz);
}
if(ans.empty()) ans = tmp;
chmin(ans, tmp);
}while(next_permutation(all(v)));
cout << ans << '\n';
return 0;
}
T1610