답안 #389960

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
389960 2021-04-15T00:54:04 Z abc864197532 Binary Subsequences (info1cup17_binary) C++17
82 / 100
900 ms 340 KB
#include <bits/stdc++.h>
using namespace std;
#define lli long long int
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define test(x) cout << #x << ' ' << x << endl
#define printv(x) { \
    for (auto a : x) cout << a << ' '; \
    cout << endl; \
}
#define pii pair<int, int>
#define pll pair<lli, lli>
#define X first
#define Y second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
const int N = 512, abc = 864197532;

int chk(int l, int r) {
    if (__gcd(l, r) > 1) return 1 << 30;
    int len = 0;
    while (l > 1 || r > 1) {
        len++;
        if (l > r) {
            l -= r;
        } else {
            r -= l;
        }
    }
    return len;
}

string gen(int l, int r) {
    string ans;
    while (l > 1 || r > 1) {
        if (l > r) {
            ans += "1 ";
            l -= r;
        } else {
            ans += "0 ";
            r -= l;
        }
    }
    return ans;
}

int main () {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin >> t;
    while (t--) {
        int x;
        cin >> x;
        int ans1 = 0, ans2 = 1 << 30, bestl = -1;
        for (int l = 1; l < x + 2; ++l) {
            int re = chk(l, x + 2 - l);
            if (re != 1 << 30) {
                ans1++;
                if (ans2 > re) {
                    bestl = l;
                    ans2 = re;
                }
            }
        }
        cout << ans1 << endl << gen(bestl, x + 2 - bestl) << endl;
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 206 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 76 ms 316 KB Output is correct
2 Correct 191 ms 204 KB Output is correct
3 Correct 179 ms 320 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1090 ms 204 KB Time limit exceeded
2 Halted 0 ms 0 KB -