結果
問題 | No.274 The Wall |
ユーザー | null_null |
提出日時 | 2018-12-23 23:19:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 549 ms / 2,000 ms |
コード長 | 4,153 bytes |
コンパイル時間 | 1,794 ms |
コンパイル使用メモリ | 172,496 KB |
実行使用メモリ | 265,892 KB |
最終ジャッジ日時 | 2024-06-22 02:25:46 |
合計ジャッジ時間 | 3,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
9,872 KB |
testcase_01 | AC | 3 ms
10,056 KB |
testcase_02 | AC | 3 ms
11,172 KB |
testcase_03 | AC | 191 ms
132,260 KB |
testcase_04 | AC | 5 ms
9,968 KB |
testcase_05 | AC | 4 ms
10,472 KB |
testcase_06 | AC | 3 ms
11,140 KB |
testcase_07 | AC | 3 ms
9,788 KB |
testcase_08 | AC | 3 ms
10,700 KB |
testcase_09 | AC | 4 ms
10,584 KB |
testcase_10 | AC | 2 ms
9,720 KB |
testcase_11 | AC | 549 ms
265,892 KB |
testcase_12 | AC | 15 ms
10,056 KB |
testcase_13 | AC | 4 ms
11,024 KB |
testcase_14 | AC | 6 ms
10,040 KB |
testcase_15 | AC | 9 ms
11,148 KB |
testcase_16 | AC | 77 ms
54,676 KB |
testcase_17 | AC | 76 ms
54,832 KB |
testcase_18 | AC | 76 ms
56,536 KB |
testcase_19 | AC | 12 ms
10,572 KB |
testcase_20 | AC | 13 ms
9,936 KB |
testcase_21 | AC | 14 ms
10,572 KB |
testcase_22 | AC | 15 ms
9,876 KB |
testcase_23 | AC | 15 ms
11,224 KB |
testcase_24 | AC | 15 ms
10,616 KB |
testcase_25 | AC | 14 ms
10,572 KB |
ソースコード
#define _USE_MATH_DEFINES #define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using namespace std; // #define int long long #define pb(x) push_back(x) #define m0(x) memset((x), 0, sizeof(x)) #define mm(x) memset((x), -1, sizeof(x)) //container #define ALL(x) (x).begin(), (x).end() #define RALL(a) (a).rbegin(), (a).rend() #define EACH(i, c) for (typeof((c).begin()) i = (c).begin(); i != (c).end(); ++i) #define EXIST(s, e) ((s).find(e) != (s).end()) #define UNIQUE(v) (v).erase(unique((v).begin(), (v).end()), (v).end()); #define PERM(c) \ sort(ALL(c)); \ for (bool c##p = 1; c##p; c##p = next_permutation(ALL(c))) // debug #define GET_VAR_NAME(variable) #variable #define test(x) cout << GET_VAR_NAME(x) << " = " << x << endl; // bit_macro #define bit(n) (1LL << (n)) #define bitset(a, b) (a) |= (1 << (b)) #define bitunset(a, b) (a) |= ~(1 << (b)) #define bitcheck(a, b) ((((a) >> (b)) & 1) == 1) #define bitcount(a) __builtin_popcountll((a)) //typedef typedef long long lint; typedef complex<long double> Complex; typedef pair<int, int> P; typedef tuple<int, int, int> TP; typedef vector<int> vec; typedef vector<vec> mat; //constant const int INF = (int)1e18; const int MOD = (int)1e9 + 7; const double EPS = (double)1e-10; const int dx[] = {-1, 0, 0, 1, 0, -1, -1, 1, 1}; const int dy[] = {0, -1, 1, 0, 0, 1, -1, 1, -1}; // template <typename T> void chmax(T &a, T b) { a = max(a, b); } template <typename T> void chmin(T &a, T b) { a = min(a, b); } // inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template <class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } // struct Accelerate_Cin { Accelerate_Cin() { cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(20); }; }; //O(N) //充足可能性問題を解く。 //O(V+E) //強連結成分分解 const int MAX_V = 101010; int V; //頂点数 vector<int> G[MAX_V]; //グラフの辺 vector<int> rG[MAX_V]; //逆向きの辺 vector<int> vs; //帰りがけ順の並び bool used[MAX_V]; //既に調べたかどうか int cmp[MAX_V]; //属する強連結成分のトポロジカル順序 void add_edge(int from, int to) { G[from].push_back(to); rG[to].push_back(from); } void dfs(int v) { used[v] = true; for (int i = 0; i < G[v].size(); i++) { if (!used[G[v][i]]) dfs(G[v][i]); } vs.push_back(v); } void rdfs(int v, int k) { used[v] = true; cmp[v] = k; for (int i = 0; i < rG[v].size(); i++) { if (!used[rG[v][i]]) rdfs(rG[v][i], k); } } void scc() { memset(used, 0, sizeof(used)); vs.clear(); for (int v = 0; v < V; v++) { if (!used[v]) dfs(v); } memset(used, 0, sizeof(used)); int k = 0; for (int i = vs.size() - 1; i >= 0; i--) { if (!used[vs[i]]) rdfs(vs[i], k++); } return; } /////////////////////////////////////////////////////////////////////// //ここからSAT int N; //リテラルの要素数。 int L[101010], R[101010], D[101010]; void solve() { V = 2 * N; //各リテラルをxで表す。対応は以下の通り //0~N-1 : x_i //N~2*N-1: ¬x_i //以下xリテラルの入力 for (int i = 0; i < N; i++) { for (int j = 0; j < i; j++) { if (max(L[i], L[j]) <= min(L[i] + D[i], L[j] + D[j])) { add_edge(i + N, j); add_edge(j + N, i); } if (max(R[i], R[j]) <= min(R[i] + D[i], R[j] + D[j])) { add_edge(i, j + N); add_edge(j, i + N); } if (max(R[i], L[j]) <= min(R[i] + D[i], L[j] + D[j])) { add_edge(i, j); add_edge(j + N, i + N); } if (max(L[i], R[j]) <= min(L[i] + D[i], R[j] + D[j])) { add_edge(j, i); add_edge(i + N, j + N); } } } //強連結成分分解 scc(); for (int i = 0; i < N; i++) { if (cmp[i] == cmp[N + i]) { cout << "NO" << endl; return; } } cout << "YES" << endl; } signed main() { int M; cin >> N >> M; for (int i = 0; i < N; i++) { int l, r; cin >> l >> r; D[i] = r - l; L[i] = l; R[i] = M - 1 - r; } solve(); return 0; }