結果

問題 No.438 Cwwプログラミング入門
ユーザー btkbtk
提出日時 2016-10-26 17:39:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,259 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 168,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 16:01:08
合計ジャッジ時間 11,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/*
 * Problem link
 * http://yukicoder.me/problems/1100
 */
#include<bits/stdc++.h>
using namespace std;

struct cww{cww(){cin.tie(0);ios_base::sync_with_stdio(false);} }star;

typedef long long LL;

// a x + b y = gcd(a, b)
// O(log (a+b) )
LL extgcd(LL a, LL b, LL &x, LL &y) {
    LL g = a; x = 1; y = 0;
    if (b != 0) g = extgcd(b, a % b, y, x), y -= (a / b) * x;
    return g;
}
LL gcd(LL a,LL b){
    return (b==0)?a:gcd(b,a%b);
}
LL lcm(LL a,LL b){
    return (a*b)/gcd(a,b);
}

inline bool inner(LL x,LL lb,LL ub) {
    return(lb <= x && x <= ub);
}
#define SZ 10000

int main() {
    LL x, y, z;
    cin >> x >> y >> z;
    assert(inner(x, 0, 100000000));
    assert(inner(y, 0, 100000000));
    assert(inner(z, 0, 100000000));
    /*多分分けなくてもいいけどz=0は分けたほうが楽だと思います.*/
    if (z == 0)
        cout << "ccW" << endl;

    /*これは分けないと多分事故る*/
    else if (x == 0 && y ==0)
        cout << "mourennaihasimasenn" << endl;
    else if(z%gcd(x,y)==0){
        LL a,b,c,d,g,l,k;
        g=extgcd(x,y,a,b);
        l=lcm(x,y);
        //ax+by=g
 
        k=z/g;
        c=l/x;
        d=l/y;
        //(ak+nc)x+(bk-nd)y=g*k=z
        a*=k;b*=k;

        //nについて三分探索
        //のかわりにbtk法を使用
        auto f=[&](LL m){
            if(a+c*m<0&&b-d*m<0)return 1145141919ll;
            return abs(a+c*m)+abs(b-d*m);
        };
        LL n=0,w=114514,nx,ny;
        LL y=f(n);
        while(w>1){
            if ((ny=f(nx=x+w)) < y) y = ny, x = nx; 
            else if ((ny=f(nx=x-w)) < y) y = ny, x = nx;
            w =(w+1)/ 2;
        }
        LL res=n;
        for(int i=-3;i<=3;i++)if(f(res)>f(n+i))res=i;
        if(f(res)*2-1<=SZ){
            a=a+c*res;
            b=b-d*res;
            char s1='c',s2='w',e1='C',e2='C';
            if(a<=0){
                swap(s1,s2);
                swap(a,b);
            }
            if(a<0)e1='W';
            for(int i=0;i<b;i++)cout<<s2;
            for(int i=0;i<a;i++)cout<<s1;
            for(int i=0;i<b;i++)cout<<e2;
            for(int i=1;i<a;i++)cout<<e1;
            cout<<endl;
            return 0;
        }
    }
    
    cout << "mourennaihasimasenn" << endl;
    
    return 0;
}
0