結果

問題 No.438 Cwwプログラミング入門
ユーザー parukiparuki
提出日時 2016-10-28 23:38:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,333 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 177,084 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 17:21:25
合計ジャッジ時間 13,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 RE -
testcase_14 AC 2 ms
5,376 KB
testcase_15 RE -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 RE -
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 RE -
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 RE -
testcase_39 AC 2 ms
5,376 KB
testcase_40 RE -
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 RE -
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 RE -
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 RE -
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
testcase_65 RE -
testcase_66 AC 3 ms
5,376 KB
testcase_67 RE -
testcase_68 RE -
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
testcase_71 AC 2 ms
5,376 KB
testcase_72 AC 2 ms
5,376 KB
testcase_73 AC 2 ms
5,376 KB
testcase_74 AC 2 ms
5,376 KB
testcase_75 AC 2 ms
5,376 KB
testcase_76 RE -
testcase_77 AC 2 ms
5,376 KB
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 RE -
testcase_85 RE -
testcase_86 RE -
testcase_87 RE -
testcase_88 AC 2 ms
5,376 KB
testcase_89 AC 2 ms
5,376 KB
testcase_90 AC 2 ms
5,376 KB
testcase_91 AC 2 ms
5,376 KB
testcase_92 AC 2 ms
5,376 KB
testcase_93 AC 2 ms
5,376 KB
testcase_94 AC 2 ms
5,376 KB
testcase_95 AC 2 ms
5,376 KB
testcase_96 RE -
testcase_97 AC 2 ms
5,376 KB
testcase_98 RE -
testcase_99 RE -
testcase_100 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

vector<long long> exgcd(long long a, long long b){
    if(b==0) return vector<long long>{1, 0, a};
    auto res = exgcd(b, a%b);
    return vector<long long>{res[1], res[0]-a/b*res[1], res[2]};
}

char NG[] = "mourennaihasimasenn";
const int LIM = 10000, MA = 100000000;

int main(){
    ll x, y, z;
    cin >> x >> y >> z;

    if(x == 0 && y == 0) {
        if(z == 0) {
            puts("c");
        } else {
            puts(NG);
        }
        return 0;
    }

    if(z == 0) {
        if(x == 0) {
            puts("c");
            return 0;
        }
        if(y == 0) {
            puts("w");
            return 0;
        }
    }

    // xだけ
    for(int a = 1; a <= LIM; ++a){
        ll val = a*x;
        int len = a + (a > 1 ? a - 1 : 0);
        if(val == z && len <= LIM) {
            string ans = string(a, 'c');
            if(a > 1)ans += string(a - 1, 'C');
            printf("%s\n", ans.c_str());
            return 0;
        }
    }

    // yだけ
    for(int a = 1; a <= LIM; ++a){
        ll val = a*y;
        int len = a + (a > 1 ? a - 1 : 0);
        if(val == z && len <= LIM) {
            string ans = string(a, 'w');
            if(a > 1)ans += string(a - 1, 'C');
            printf("%s\n", ans.c_str());
            return 0;
        }
    }

    if(x == 0 || y == 0) {
        puts(NG);
        return 0;
    }

    string ans;
    // x!=0 && y != 0
    for(int a = -LIM; a <= LIM; ++a) if(a){
        ll need = z - a*x;
        // need != 0
        if(need%y == 0) {
            ll b = need / y;
            ll cost = 2*abs(a) + 2*abs(b) -1;
            if(cost > LIM || b == 0)continue;
            if(a > 0 && b > 0) {
                ans = string(a, 'c') + string(b, 'w') + string(a + b - 1, 'C');
            } else if(a > 0 && b < 0) {
                b = abs(b);
                ans = string(b, 'w') + string(b - 1, 'C') + string(a, 'c') + string(a-1, 'C') + string(1,'W');
            } else { // a < 0 && b > 0
                a = abs(a);
                ans = string(a, 'c') + string(a - 1, 'C') + string(b, 'w') + string(b-1, 'C') + string(1,'W');
            }
            
            stack<ll> stk;
            each(c, ans) {
                if(c == 'c')stk.push(x);
                else if(c == 'w')stk.push(y);
                else{
                    if(sz(stk) < 2) {
                        stk.push(z + 1);
                        break;
                    }
                    ll p = stk.top(); stk.pop();
                    ll q = stk.top(); stk.pop();
                    if(c == 'C')stk.push(p + q);
                    else stk.push(p - q);
                }
            }
            if(sz(stk) && stk.top() == z) {
                printf("%s\n", ans.c_str());
                return 0;
            }
        }
    }
    assert(0);
    puts(NG);
}
0