結果

問題 No.2947 Sing a Song
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-25 21:49:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,680 bytes
コンパイル時間 2,840 ms
コンパイル使用メモリ 247,472 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 21:49:12
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 8 ms
6,820 KB
testcase_19 AC 7 ms
6,820 KB
testcase_20 AC 11 ms
6,816 KB
testcase_21 AC 4 ms
6,820 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 22 ms
6,816 KB
testcase_24 AC 24 ms
6,824 KB
testcase_25 AC 24 ms
6,820 KB
testcase_26 AC 23 ms
6,816 KB
testcase_27 AC 60 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

long long gcd_array(vector<long long> a) {
    long long ans = a[0];
    for (int i = 0; i < (int)a.size(); i++) {
        ans = gcd(ans, a[i]);
    }
    return ans;
}

// ax + by = gcd(a, b) を満たす (x, y) を求める
// c が gcd(a, b) で割り切れないと、ax + by = c を満たす c は存在しない
// 負の数の場合の処理に注意
long long extGCD(long long a, long long b, long long &x, long long &y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }
    long long d = extGCD(b, a % b, y, x);
    y -= a / b * x;
    return d;
}

pair<lint, lint> f(lint a, lint b, lint c) {
    lint x, y;
    extGCD(a, b, x, y);
    lint g = gcd(a, b);
    x *= c / g;
    y *= c / g;
    lint da = a / g, db = b / g;
    if (y > 0) {
        lint q = y / da;
        x += db * q;
        y -= da * q;
    } else {
        lint q = abs(y) / da + (abs(y) % da != 0);
        x -= db * q;
        y += da * q;
    }
    return {x, y};
}

int main() {
    int n;
    string s, t;
    cin >> n >> s >> t;
    lint a = s.size(), b = t.size();
    rep(i, n) {
        lint c;
        cin >> c;
        auto [x, y] = f(a, b, c);
        rep(_, x) {
            cout << s << " ";
        }
        rep(_, y) {
            cout << t << " ";
        }
        cout << endl;
    }
}
0