結果

問題 No.438 Cwwプログラミング入門
ユーザー h_noson
提出日時 2016-10-30 22:44:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,659 bytes
コンパイル時間 1,275 ms
コンパイル使用メモリ 85,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 22:17:09
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 98
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <iomanip>
#include <cassert>
using namespace std;

#define GET_ARG(a,b,c,F,...) F
#define REP3(i,s,e) for (i = s; i <= e; i++)
#define REP2(i,n) REP3 (i,0,(int)(n)-1)
#define REP(...) GET_ARG (__VA_ARGS__,REP3,REP2) (__VA_ARGS__)
#define RREP3(i,s,e) for (i = s; i >= e; i--)
#define RREP2(i,n) RREP3 (i,(int)(n)-1,0)
#define RREP(...) GET_ARG (__VA_ARGS__,RREP3,RREP2) (__VA_ARGS__)
#define DEBUG(x) cerr << #x ": " << x << endl

const int INF = 1e8;

int main(void) {
    long long i, x, y, z;
    cin >> x >> y >> z;
    int cs = INF, ws = INF;
    if (z == 0) {
        cout << "ccW" << endl;
        return 0;
    }
    if (x == 0) {
        if (y != 0 && z % y == 0) {
            cs = 0;
            ws = z / y;
        }
    }
    else {
        REP (i,-5000,5000) {
            if ((z - i * y) % x == 0 && abs(cs) + abs(ws) > abs(i) + abs((z-i*y)/x)) {
                cs = (z-i*y)/x;
                ws = i;
            }
        }
    }
    if (2 * (abs(cs) + abs(ws)) - 1 > 10000) {
        cout << "NO" << endl;
        return 0;
    }
    string val, op;
    if (cs > 0) {
        val += 'c';
        cs--;
    }
    else {
        val += 'w';
        ws--;
    }
    for (;cs > 0; cs--) {
        val += 'c';
        op += 'C';
    }
    for (;cs < 0; cs++) {
        val += 'c';
        op += 'W';
    }
    for (;ws > 0; ws--) {
        val += 'w';
        op += 'C';
    }
    for (;ws < 0; ws++) {
        val += 'w';
        op += 'W';
    }
    reverse(val.begin(),val.end());
    cout << val + op << endl;
    return 0;
}
0