結果
問題 | No.1436 Rgaph |
ユーザー | tarattata1 |
提出日時 | 2021-03-19 23:54:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,065 bytes |
コンパイル時間 | 1,233 ms |
コンパイル使用メモリ | 104,756 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-11-19 02:47:56 |
合計ジャッジ時間 | 13,319 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,576 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
8,704 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 15 ms
5,248 KB |
testcase_11 | AC | 27 ms
5,248 KB |
testcase_12 | AC | 27 ms
5,248 KB |
testcase_13 | AC | 15 ms
5,248 KB |
testcase_14 | AC | 36 ms
5,248 KB |
testcase_15 | AC | 16 ms
5,248 KB |
testcase_16 | AC | 25 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 6 ms
5,248 KB |
testcase_21 | AC | 5 ms
5,248 KB |
testcase_22 | AC | 23 ms
5,248 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 59 ms
5,248 KB |
testcase_26 | TLE | - |
testcase_27 | AC | 56 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 19 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #include <cstring> #include <cstdlib> #include <cmath> #include <algorithm> #include <vector> #include <set> #include <map> #include <queue> #include <stack> #include <list> #include <iterator> #include <cassert> #include <numeric> #include <functional> #include <ctime> #pragma warning(disable:4996) //#define ATCODER #ifdef ATCODER #include <atcoder/all> #endif typedef long long ll; typedef unsigned long long ull; #define LINF 9223300000000000000 #define LINF2 1223300000000000000 #define LINF3 1000000000000 #define INF 2140000000 const long long MOD = 1000000007; //const long long MOD = 998244353; using namespace std; #ifdef ATCODER using namespace atcoder; #endif void solve() { int n, m; scanf("%d%d", &n, &m); vector<vector<pair<int,int>>> g(n); // to,edge vector<int> a(m), b(m); int i; for (i = 0; i < m; i++) { scanf("%d%d", &a[i], &b[i]); a[i]--; b[i]--; g[a[i]].push_back(make_pair(b[i],i)); } for (i = 0; i < m; i++) { int ans0 = 0; vector<int> pr(n); vector<int> dist(n, INF); queue<int> que; que.push(b[i]); dist[b[i]] = 0; while (!que.empty()) { int tmp = que.front(); que.pop(); int k; for (k = 0; k < (int)g[tmp].size(); k++) { int ne = g[tmp][k].first; if (dist[ne] == INF) { dist[ne] = dist[tmp] + 1; pr[ne] = g[tmp][k].second; que.push(ne); } } } int j; for (j = 0; j < n; j++) { if (dist[j] == INF) { printf("-1"); return; } } } for (i = 0; i < m; i++) { vector<int> pr(n); vector<int> dist(n, INF); queue<int> que; que.push(b[i]); dist[b[i]] = 0; while (!que.empty()) { int tmp = que.front(); que.pop(); int k; for (k = 0; k < (int)g[tmp].size(); k++) { int ne = g[tmp][k].first; if (dist[ne] == INF) { dist[ne] = dist[tmp] + 1; pr[ne] = g[tmp][k].second; que.push(ne); } } } if (dist[a[i]] % 2 == 0) { vector<int> ans(m); int curr = a[i]; int cnt = 0; while (1) { int edge = pr[curr]; ans[edge] = 1 - cnt; cnt = 1 - cnt; curr = a[edge]; if (curr == a[i]) break; } int k; for (k = 0; k < m; k++) { if (ans[k]) printf("R"); else printf("G"); } printf("\n"); return; } } printf("-1\n"); return; } int main() { #if 1 solve(); #else int T, t; scanf("%d", &T); for (t = 0; t < T; t++) { //cout << "Case #" << t + 1 << ": "; solve(); } #endif return 0; }