結果
問題 | No.2247 01 ZigZag |
ユーザー | penguin8331 |
提出日時 | 2023-03-17 21:50:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,431 bytes |
コンパイル時間 | 1,527 ms |
コンパイル使用メモリ | 168,356 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-18 10:41:24 |
合計ジャッジ時間 | 5,644 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | RE | - |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 5 ms
5,376 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 1 ms
5,376 KB |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | AC | 1 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | RE | - |
testcase_46 | AC | 6 ms
5,376 KB |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | AC | 1 ms
5,376 KB |
testcase_50 | AC | 2 ms
5,376 KB |
testcase_51 | RE | - |
ソースコード
#line 2 "/home/penguin8331/vscode/library/template/template.hpp" #include <bits/stdc++.h> #line 3 "/home/penguin8331/vscode/library/template/macro.hpp" #define pb push_back #define mp make_pair #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define elif else if #define updiv(N, X) (((N) + (X) - (1)) / (X)) #define sigma(a, b) ((a + b) * (b - a + 1) / 2) #line 3 "/home/penguin8331/vscode/library/template/alias.hpp" using ll = long long; using ld = long double; using pii = std::pair<int, int>; using pll = std::pair<ll, ll>; constexpr int inf = 1 << 30; constexpr ll INF = 1LL << 60; constexpr int dx[] = {1, 0, -1, 0, 1, -1, 1, -1}; constexpr int dy[] = {0, 1, 0, -1, 1, 1, -1, -1}; constexpr int mod = 998244353; constexpr int MOD = 1e9 + 7; #line 3 "/home/penguin8331/vscode/library/template/func.hpp" template <typename T> inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); } #line 3 "/home/penguin8331/vscode/library/template/util.hpp" struct IOSetup { IOSetup() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cout.tie(0); std::cout << std::fixed << std::setprecision(12); std::cerr << std::fixed << std::setprecision(12); } } IOSetup; #line 1 "/home/penguin8331/vscode/library/template/debug.hpp" #ifdef LOCAL #include <algo/debug.hpp> #else #define debug(...) #endif #line 8 "/home/penguin8331/vscode/library/template/template.hpp" using namespace std; #line 2 "A.cpp" int main() { int N, M, K; cin >> N >> M >> K; // 00000 0 1 0 1 0 1 0 1 111111 if (min(min(N, M) * 2, N + M - 1) < K) { cout << -1 << endl; return 0; } if((N==0||M==0)&&K>0){ cout<<-1<<endl; return 0; } int fzero = 0, lone = 0; while (true) { if (min(min(N - 1, M) * 2, N + M - 2) < K) { break; } N--; fzero++; } while (true) { if (min(min(N, M - 1) * 2, N + M - 2) < K) { break; } M--; lone++; } debug(fzero,lone,N,M); if(N!=M){ assert(false); } for(int i=0;i<fzero;i++){ debug(i); cout<<0; } for(int i=0;i<N;i++){ cout<<"01"; } for(int i=0;i<lone;i++){ cout<<1; } cout<<endl; }