結果

問題 No.241 出席番号(1)
ユーザー kurenai3110kurenai3110
提出日時 2016-08-23 22:19:06
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 724 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 72,592 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-11-07 23:28:48
合計ジャッジ時間 5,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,320 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;

#define rep(i,n) for(int i=0;i<n;i++)
#define ll long long

int n;
int a[50];
vector<bool> seat;
vector<int> ans;
bool solve(vector<bool> seat,int index) {
	rep(i, n) {
		if (!seat[i] && i!=a[index]) {
			seat[i] = true;
			if (index==n-1) {
				ans[index] = i;
				return true;
			}
			if (solve(seat, index + 1)) {
				ans[index] = i;
				return true;
			}
			else seat[i] = false;
		}
	}
	return false;
}

int main() {

	cin >> n;
	seat.resize(n);
	ans.resize(n);
	rep(i, n) {
		cin >> a[i];
	}
	if (solve(seat, 0)) {
		rep(i, n) {
			cout << ans[i] << endl;
		}
	}
	else cout << -1 << endl;
	return 0;
}
0