結果

問題 No.331 CodeRunnerでやれ
ユーザー sugim48sugim48
提出日時 2015-12-24 01:11:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 322 ms / 5,000 ms
コード長 1,687 bytes
コンパイル時間 1,095 ms
コンパイル使用メモリ 95,812 KB
実行使用メモリ 25,476 KB
平均クエリ数 344.82
最終ジャッジ日時 2024-07-16 22:31:16
合計ジャッジ時間 6,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
25,232 KB
testcase_01 AC 163 ms
24,848 KB
testcase_02 AC 187 ms
24,836 KB
testcase_03 AC 210 ms
24,976 KB
testcase_04 AC 188 ms
24,836 KB
testcase_05 AC 189 ms
25,220 KB
testcase_06 AC 217 ms
25,232 KB
testcase_07 AC 318 ms
25,220 KB
testcase_08 AC 207 ms
24,848 KB
testcase_09 AC 260 ms
24,964 KB
testcase_10 AC 258 ms
25,476 KB
testcase_11 AC 322 ms
24,848 KB
testcase_12 AC 305 ms
24,836 KB
testcase_13 AC 268 ms
24,836 KB
testcase_14 AC 281 ms
24,592 KB
testcase_15 AC 288 ms
24,580 KB
testcase_16 AC 266 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

int dy[] = {0, -1, 0, 1};
int dx[] = {-1, 0, 1, 0};

string f() {
	string s; cin >> s;
	if (s == "Merry") exit(0);
	return s;
}

void dfs(int y, int x, int k, vector<vector<bool> >& vis) {
	vis[y][x] = true;
	f();
	cout << 'L' << endl; k = (k + 3) % 4;
	if (f() != "0") {
		int _y = y + dy[k], _x = x + dx[k];
		if (!vis[_y][_x]) {
			cout << 'F' << endl;
			dfs(_y, _x, k, vis);
			cout << 'B' << endl;
			f();
		}
	}
	cout << 'R' << endl; k = (k + 1) % 4;
	if (f() != "0") {
		int _y = y + dy[k], _x = x + dx[k];
		if (!vis[_y][_x]) {
			cout << 'F' << endl;
			dfs(_y, _x, k, vis);
			cout << 'B' << endl;
			f();
		}
	}
	cout << 'R' << endl; k = (k + 1) % 4;
	if (f() != "0") {
		int _y = y + dy[k], _x = x + dx[k];
		if (!vis[_y][_x]) {
			cout << 'F' << endl;
			dfs(_y, _x, k, vis);
			cout << 'B' << endl;
			f();
		}
	}
	cout << 'L' << endl; k = (k + 3) % 4;
	f();
}

int main() {
	vector<vector<bool> > vis(50, vector<bool>(50));
	for (;;) {
		dfs(25, 25, 0, vis);
		cout << 'R' << endl;
		f();
	}
}
0