結果

問題 No.274 The Wall
ユーザー pazzle1230pazzle1230
提出日時 2018-02-28 02:04:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 3,901 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 198,800 KB
実行使用メモリ 814,664 KB
最終ジャッジ日時 2023-08-21 04:16:33
合計ジャッジ時間 6,338 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
メンバ関数 ‘Graph<0>& Graph<0>::operator=(const Graph<0>&)’ 内,
    inlined from ‘int32 SCC::build()’ at main.cpp:102:27,
    inlined from ‘bool TwoSAT::build()’ at main.cpp:146:12,
    inlined from ‘int main()’ at main.cpp:185:14:
main.cpp:27:7: 警告: ‘<無名>.Graph<0>::E’ may be used uninitialized [-Wmaybe-uninitialized]
   27 | class Graph{
      |       ^~~~~
main.cpp: 関数 ‘int main()’ 内:
main.cpp:102:41: 備考: ‘<無名>’ はここで宣言されています
  102 |                 newG = Graph<DIRECTED>(k);
      |                                         ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define INF_LL (int64)1e18
#define INF (int32)1e9
#define REP(i, n) for(int i = 0;i < (n);i++)
#define FOR(i, a, b) for(int i = (a);i < (b);i++)
#define all(x) x.begin(),x.end()
#define fs first
#define sc second
using int32 = int_fast32_t;
using uint32 = uint_fast32_t;
using int64 = int_fast64_t;
using uint64 = uint_fast64_t;
using PII = pair<int32, int32>;
using PLL = pair<int64, int64>;

const double eps = 1e-10;

template<typename A, typename B>inline void chmin(A &a, B b){if(a > b) a = b;}
template<typename A, typename B>inline void chmax(A &a, B b){if(a < b) a = b;}

const int32 DIRECTED = 0;
const int32 UNDIRECTED = 1;

template<int32 isUNDIRECTED=0>
class Graph{
	struct Edge{
		int32 u, v, id;
		int64 c;
		Edge(int32 u, int32 v, int64 c=0, int32 id=0):u(u), v(v), c(c), id(id){}
	};

	int32 V, E;
	vector<vector<Edge>> G;
	vector<Edge> Es;
public:
	Graph(){}
	Graph(int32 V):V(V){G.resize(V);}
	Graph(const Graph<isUNDIRECTED>& g):V(g.V), E(g.E), G(g.G), Es(g.Es){}

	void add_edge(int32 u, int32 v, int64 c=0, int32 id=0){
		G[u].emplace_back(u, v, c, id);
		if(isUNDIRECTED) G[v].emplace_back(v, u, c, id);
		Es.emplace_back(u, v, c, id);
		E++;
	}

	const vector<Edge>& operator[](int32 k){
		return G[k];
	}
};

class SCC{
private:
	Graph<DIRECTED> orgG, revG, newG;
	vector<int32> ord, comp;
	vector<bool> used;
	vector<vector<int32>> vs;

	int32 V, nV;
public:
	SCC(){}
	SCC(int32 V):orgG(V), revG(V), comp(V, -1), used(V, 0), V(V){}

	void add_edge(int32 u, int32 v){
		orgG.add_edge(u, v);
		revG.add_edge(v, u);
	}

	void dfs(int32 v){
		used[v] = true;
		for(auto e : orgG[v]){
			if(!used[e.v]) dfs(e.v);
		}
		ord.push_back(v);
	}

	void rdfs(int32 v, int32 k){
		used[v] = true;
		comp[v] = k;
		for(auto e : revG[v]){
			if(!used[e.v]) rdfs(e.v, k);
		}
	}

	int32 build(){
		for(int32 i = 0;i < V;i++){
			if(!used[i]) dfs(i);
		}
		fill(used.begin(), used.end(), 0);
		int32 k = 0;
		for(int32 i = ord.size()-1;i >= 0;i--){
			if(!used[ord[i]]) rdfs(ord[i], k++);
		}
		nV = k;

		vs.resize(k, vector<int32>());
		for(int32 i = 0;i < V;i++)
			vs[comp[i]].push_back(i);

		newG = Graph<DIRECTED>(k);
		for(int32 i = 0;i < V;i++){
			for(auto e : orgG[i]){
				if(comp[i] != comp[e.v])
					newG.add_edge(comp[i], comp[e.v], e.c);
			}
		}
		return k;
	}

	int32 size(){
		return nV;
	}

	const Graph<DIRECTED>& graph(){
		return newG;
	}

	const vector<int32>& vertices(int32 v){
		return vs[v];
	}

	int32 operator[](int32 k){
		return comp[k];
	}
};

class TwoSAT{
private:
	SCC scc;
	int32 n;
	vector<bool> truth;
public:
	TwoSAT(){}
	TwoSAT(int32 n):n(n), scc(2*n){}

	void add_state(int32 a, bool truth1, int32 b, bool truth2){
		int32 na = truth1 ? a+n : a, nb = truth2 ? b+n : b;
		a = truth1 ? a : a+n; b = truth2 ? b : b+n;
		scc.add_edge(na, b);
		scc.add_edge(nb, a);
	}

	bool build(){
		scc.build();
		for(int32 i = 0;i < n;i++){
			if(scc[i] == scc[i+n]) return false;
			if(scc[i] > scc[i+n]) truth.push_back(true);
			else truth.push_back(false);
		}
		return true;
	}

	const vector<bool>& result(){
		return truth;
	}

	bool operator[](int32 k){
		return truth[k];
	}
};

int main(void){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int32 N, M;
	cin >> N >> M;
	vector<PII> wall;
	wall.resize(N);
	REP(i, N)
		cin >> wall[i].fs >> wall[i].sc;
	TwoSAT scc(N);
	REP(i, N){
		REP(j, N){
			if(i == j) continue;
			PII rw1(M-wall[i].sc-1, M-wall[i].fs-1), rw2(M-wall[j].sc-1, M-wall[j].fs-1);
			if(!(wall[j].sc < wall[i].fs) && !(wall[i].sc < wall[j].fs)) scc.add_state(i, 0, j, 0);
			if(!(wall[j].sc < rw1.fs) && !(rw1.sc < wall[j].fs)) scc.add_state(i, 1, j, 0);
			if(!(rw2.sc < wall[i].fs) && !(wall[i].sc < rw2.fs)) scc.add_state(i, 0, j, 1);
			if(!(rw2.sc < rw1.fs) && !(rw1.sc < rw2.sc)) scc.add_state(i, 1, j, 1);
		}
	}
	if(scc.build())
		cout << "YES" << endl;
	else
		cout << "NO" << endl;
}
0