結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | 37kt_ |
提出日時 | 2015-09-10 19:29:17 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 10 ms / 1,000 ms |
コード長 | 1,359 bytes |
コンパイル時間 | 1,350 ms |
コンパイル使用メモリ | 161,252 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 12:39:01 |
合計ジャッジ時間 | 2,534 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%d %d %d", &t, &a, &b); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// BCC /* #include <cstdio> #include <algorithm> #include <iostream> #include <utility> #include <vector> #include <queue> */ // GCC #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; i--) #define each(i, c) for (__typeof((c).begin()) i = (c).begin(); i != (c).end(); ++i) #define chmin(a, b) a = min(a, b) #define chmax(a, b) a = max(a, b) #define pb push_back #define mp make_pair typedef long long ll; const int INF = 1 << 28; const ll INFLL = 1ll << 56; const char *C = "^>v<"; int main() { int t, a, b; scanf("%d %d %d", &t, &a, &b); if (max(a, b) > t){ puts("NO"); return 0; } if (t + a + b == 1){ puts("NO"); return 0; } puts("YES"); // 1: up, 2: right, 4: down, 8: left vector<int> res; rep(i, (t - max(a, b)) / 2){ res.pb(1); res.pb(4); } rep(i, max(a, b)){ int x = 0; if (i < a) x += 1; if (i < b) x += 2; res.pb(x); } if ((t - max(a, b)) & 1){ int x = res.back(); res.pop_back(); if (x == 3){ res.pb(1); res.pb(2); } else if (x == 1){ res.pb(3); res.pb(8); } else if (x == 2){ res.pb(3); res.pb(4); } else if (x == 4){ res.pb(12); res.pb(2); } } for (auto x : res){ rep(i, 4){ if (x & (1 << i)){ printf("%c", C[i]); } } puts(""); } }