結果

問題 No.470 Inverse S+T Problem
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-12-23 12:31:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 3,910 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 160,100 KB
実行使用メモリ 6,692 KB
最終ジャッジ日時 2023-08-24 01:24:47
合計ジャッジ時間 3,929 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,484 KB
testcase_01 AC 4 ms
6,676 KB
testcase_02 AC 4 ms
6,492 KB
testcase_03 AC 4 ms
6,484 KB
testcase_04 AC 4 ms
6,588 KB
testcase_05 AC 4 ms
6,448 KB
testcase_06 AC 19 ms
6,612 KB
testcase_07 AC 18 ms
6,524 KB
testcase_08 AC 18 ms
6,564 KB
testcase_09 AC 5 ms
6,544 KB
testcase_10 AC 4 ms
6,464 KB
testcase_11 AC 4 ms
6,468 KB
testcase_12 AC 4 ms
6,528 KB
testcase_13 AC 4 ms
6,468 KB
testcase_14 AC 5 ms
6,536 KB
testcase_15 AC 4 ms
6,540 KB
testcase_16 AC 4 ms
6,692 KB
testcase_17 AC 4 ms
6,568 KB
testcase_18 AC 4 ms
6,532 KB
testcase_19 AC 4 ms
6,552 KB
testcase_20 AC 4 ms
6,488 KB
testcase_21 AC 5 ms
6,456 KB
testcase_22 AC 5 ms
6,520 KB
testcase_23 AC 5 ms
6,476 KB
testcase_24 AC 4 ms
6,500 KB
testcase_25 AC 4 ms
6,460 KB
testcase_26 AC 4 ms
6,500 KB
testcase_27 AC 5 ms
6,544 KB
testcase_28 AC 6 ms
6,676 KB
testcase_29 AC 4 ms
6,560 KB
testcase_30 AC 5 ms
6,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vint;
typedef pair<int,int> pint;
typedef vector<pint> vpint;
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)	
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
#define all(v) (v).begin(),(v).end()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))
#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))
const int MOD = 1e9 + 7;
const int INF = 1e9;

class strongly_connected_components{
public:
	vector<vector<int> > G, rG;
	vector<int> used, vs;
	vector<int> cmp; //cmp[v] := 頂点vが含まれる連結成分がどれなのかを示す番号
	strongly_connected_components(const vector<vector<int> > &g, const vector<vector<int> > &rg, int n): 
		G(g), rG(rg), cmp(2 * n), used(2 * n){
		exec();
	}
	int exec(){
		fill(used.begin(), used.end(), 0);
		for (int i = 0; i < G.size(); ++i){
			if(!used[i]) dfs(i);
		}
		fill(used.begin(), used.end(), 0);
		int k = 0;
		for (int i = vs.size() - 1; i >= 0; --i){
			if(!used[vs[i]]) rdfs(vs[i], k++);
		}
		return k; //sccの数
	}
	int operator[](int i){//連結成分の番号を返す
        return cmp[i];
    }
private:
	void dfs(int curr){
		used[curr] = true;
		for(auto next : G[curr]){
			if(!used[next]) dfs(next);
		}
		vs.push_back(curr);
	}

	void rdfs(int curr, int k){
		used[curr] = true;
		cmp[curr] = k;//頂点vに対して、k番目と強連結成分であること入れる
		for(auto next : rG[curr]){
			if(!used[next]) rdfs(next, k);
		}
	}
};

class twosatisfiability{
public:
	int V;
    vector<int> res; // 1:= 0:=
    vector<vector<int> > g, rg;
    twosatisfiability(int n) : V(n), g(2 * n), rg(2 * n), res(n){}

    bool exec() {
        strongly_connected_components scc(g, rg, V);
        for (int i = 0; i < V; i++) {
            if (scc[i] == scc[i + V]) return false;
            res[i] = scc[i] > scc[i + V];
        }
        return true;
    }
    void add_edge(int a, int b) {
        g[a].push_back(b);
        rg[b].push_back(a);
    }
    //0~V-1: x_i
    //V~2V-1: notx_i
    void add(int a, bool apos, int b, bool bpos) {
        add_edge(a + (apos ? V : 0), b + (bpos ? 0 : V)); // not a implies b
        add_edge(b + (bpos ? V : 0), a + (apos ? 0 : V)); // not b implies a
    }
    bool operator[](int k) {
        return res[k];
    }
};

int n;
string u[100010];
int main(void){
	cin >> n;
	rep(i, n) cin >> u[i];
	if(n > 26 * 2){
		printf("Impossible\n");
		return 0;
	}
	twosatisfiability sat(n);
	rep(i, n){
		reps(j, i + 1, n){
			//u[i]を2,1文字に分けるとき、かつそのときに限りx_iに真を割りあてる
			//被りが生じるような組み合わせには偽となるような節を追加
			string a = u[i];
            string b = u[j];
            //かぶさる可能性のあるものを反転させたものをグラフに追加する
           	if (a.substr(0, 1) == b.substr(0, 1) || a.substr(1, 2) == b.substr(1, 2)) {// false false
                sat.add(i, true, j, true);
            }
            if (a.substr(0, 1) == b.substr(2, 1) || a.substr(1, 2) == b.substr(0, 2)) {//false true
                sat.add(i, true, j, false);
            }
            if (a.substr(0, 2) == b.substr(1, 2) || a.substr(2, 1) == b.substr(0, 1)) {//true false
                sat.add(i, false, j, true);
            }
            if (a.substr(0, 2) == b.substr(0, 2) || a.substr(2, 1) == b.substr(2, 1)) {//true true
                sat.add(i, false, j, false);
            }
		}
	}

	bool flag = sat.exec();
	if(!flag){
		printf("Impossible\n");
		return 0;
	}else{
		rep(i, n){
			if(sat[i]){
				cout << u[i].substr(0, 2) << " " << u[i].substr(2, 1) << endl;
			}else{
				cout << u[i].substr(0, 1) << " " << u[i].substr(1, 2) << endl;
			}
		}
	}
	return 0;
}
0