結果
問題 | No.873 バイナリ、ヤバいなり!w |
ユーザー | roundplus |
提出日時 | 2019-09-26 00:02:41 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,719 bytes |
コンパイル時間 | 1,019 ms |
コンパイル使用メモリ | 141,848 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-07 19:32:21 |
合計ジャッジ時間 | 3,166 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 9 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 1 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 3 ms
6,940 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include <cstdio> #include <iostream> #include <iomanip> #include <functional> #include <algorithm> #include <string> #include <vector> #include <limits> #include <numeric> #include <queue> #include <cmath> #include <set> #include <map> using namespace std; #define INF (1ll<<60) #define INFint (1<<30) #define BOUND 27182818284 #define MAT 2 typedef long long ll; typedef long long int lli; typedef pair<ll, ll> P; ll MOD = 1000000007; #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define repi(i, a, b) for(int i=int(a);i<int(b);++i) template<class T> bool umax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template<class T> bool umin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } // gcd template<typename T> T gcd(T a, T b) { if (a == 0) return b; return gcd(b % a, a); } int findGCD(int arr[], int n) { int result = arr[0]; for (int i = 1; i < n; i++) result = gcd(arr[i], result); return result; } template<typename T> T lcm(T m, T n) { // 引数に0がある場合は0を返す if ((0 == m) || (0 == n)) return 0; return ((m / gcd(m, n)) * n); // lcm = m * n / gcd(m,n) } template<typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val) { fill((T *) array, (T *) (array + N), val); } int dx[5] = {1, 0, -1, 0}; int dy[5] = {0, 1, 0, -1}; // v.front() = -BOUND; // v.back() = BOUND; //struct edge{ // int cost, to; // // edge(int in_cost, int in_to){ // cost=in_cost; // to=in_to; // } // bool operator<(const edge &a) const // { // return cost > a.cost; // } //}; ll priority(ll a){ if(a&1){ // 奇数 return a; }else{ return INFint-a; } } int main() { int N; cin >> N; vector<int> cost(N+1,INFint), minimum(N+1, INFint), maximum(N+1, INFint); cost[0]=0; for(int i=1; i<=N; i++){ for(int j=1; j*j<=i; j++){ if(cost[i]>cost[i-j*j]+j){ cost[i]=cost[i-j*j]+j; minimum[i]=j; maximum[i]=j; }else if(cost[i]==cost[i-j*j]+j){ if(priority(i)>priority(j)) minimum[i]=j; if(priority(i)<priority(j)) maximum[i]=j; } } } int c=0; while(N){ int cnt; if(c==1){ cnt=maximum[N]; }else{ cnt=minimum[N]; } N-=cnt*cnt; for(ll i=0; i<cnt; i++){ cout << c; c^=1; } c^=1; } cout << endl; return 0; }