結果
| 問題 |
No.438 Cwwプログラミング入門
|
| コンテスト | |
| ユーザー |
h_noson
|
| 提出日時 | 2016-10-30 22:36:06 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,515 bytes |
| コンパイル時間 | 799 ms |
| コンパイル使用メモリ | 83,808 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-24 23:52:41 |
| 合計ジャッジ時間 | 8,039 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 62 WA * 36 |
ソースコード
#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 ans;
cerr << cs << " " << ws << endl;
if (cs > 0) {
ans += 'c';
cs--;
}
else {
ans += 'w';
ws--;
}
for (;cs > 0; cs--) ans += "cC";
for (;ws > 0; ws--) ans += "wC";
for (;cs < 0; cs++) ans += "cW";
for (;ws < 0; ws++) ans += "wW";
cout << ans << endl;
return 0;
}
h_noson