結果
問題 | No.1436 Rgaph |
ユーザー | kmjp |
提出日時 | 2021-03-21 10:52:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,032 bytes |
コンパイル時間 | 2,651 ms |
コンパイル使用メモリ | 212,104 KB |
実行使用メモリ | 7,696 KB |
最終ジャッジ日時 | 2024-11-22 01:55:48 |
合計ジャッジ時間 | 5,625 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,552 KB |
testcase_01 | AC | 5 ms
7,680 KB |
testcase_02 | AC | 5 ms
7,552 KB |
testcase_03 | AC | 5 ms
7,552 KB |
testcase_04 | AC | 5 ms
7,424 KB |
testcase_05 | AC | 4 ms
7,552 KB |
testcase_06 | AC | 19 ms
7,552 KB |
testcase_07 | WA | - |
testcase_08 | AC | 6 ms
7,400 KB |
testcase_09 | AC | 5 ms
7,424 KB |
testcase_10 | AC | 23 ms
7,564 KB |
testcase_11 | AC | 6 ms
7,680 KB |
testcase_12 | AC | 6 ms
7,696 KB |
testcase_13 | AC | 5 ms
7,640 KB |
testcase_14 | AC | 6 ms
7,584 KB |
testcase_15 | AC | 5 ms
7,680 KB |
testcase_16 | AC | 5 ms
7,588 KB |
testcase_17 | AC | 6 ms
7,548 KB |
testcase_18 | AC | 5 ms
7,664 KB |
testcase_19 | AC | 5 ms
7,556 KB |
testcase_20 | AC | 9 ms
7,680 KB |
testcase_21 | AC | 7 ms
7,552 KB |
testcase_22 | AC | 19 ms
7,692 KB |
testcase_23 | AC | 15 ms
7,492 KB |
testcase_24 | AC | 20 ms
7,540 KB |
testcase_25 | AC | 32 ms
7,664 KB |
testcase_26 | AC | 33 ms
7,552 KB |
testcase_27 | AC | 33 ms
7,520 KB |
testcase_28 | AC | 5 ms
7,552 KB |
testcase_29 | AC | 17 ms
7,584 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,M; vector<int> E[1010][2]; int ok[2020][2][2]; string S; int id[1010][1010]; vector<int> R[1010]; int from[1010]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M; MINUS(id); FOR(i,M) { cin>>x>>y; x--,y--; E[x][0].push_back(y); E[y][1].push_back(x); id[x][y]=i; } S=string(M,'R'); ok[0][0][0]=ok[0][1][0]=1; queue<int> Q; Q.push(0); Q.push(2); while(Q.size()) { int cur=Q.front()/4; int id=Q.front()/2%2; int oe=Q.front()%2; Q.pop(); FORR(e,E[cur][id]) if(ok[e][id][oe^1]==0) { ok[e][id][oe^1]=1; Q.push(e*4+id*2+(oe^1)); } } FOR(i,N) if(ok[i][0][0]==0||ok[i][0][1]==0||ok[i][1][0]==0) return _P("-1\n"); FOR(i,N) { MINUS(from); from[i]=i; queue<int> Q; Q.push(i); while(Q.size()) { x=Q.front(); Q.pop(); FORR(e,E[x][0]) { if(e==i) { vector<int> T; y=x; while(y!=i) T.push_back(y),y=from[y]; T.push_back(i); reverse(ALL(T)); R[T.size()]=T; break; } else if(from[e]==-1) { from[e]=x; Q.push(e); } } } } for(x=2;x<N;x++) if(R[x].size()) { for(i=0;i<x;i+=2) S[id[R[x][i]][R[x][(i+1)%x]]]='G'; S[id[R[x][x-1]][R[x][0]]]='G'; cout<<S<<endl; return; } cout<<-1<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }