# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
28544 | 2017-07-16T07:10:10 Z | 흐훗흐흐훗핫(#1176, dtc03012, iriszero) | Play Onwards (FXCUP2_onward) | C++ | 0 ms | 2044 KB |
#include <iostream> #include <string> #include <vector> #include <queue> using namespace std; string tmp[333]; int dp[333]; vector<int> arr[333]; int main(void) { int n,m; cin >> n >> m; for(int e=0;e<n;e++) cin >> tmp[e]; for(int e=0;e<n;e++) { for(int p=e+1;p<n;p++) { int mm=0,qq=0,rr=0; for(int q=0;q<tmp[e].size();q++) { for(int r=0;r<tmp[p].size();r++) { if(tmp[e][q]==tmp[p][r]) { rr=0; qq=0; for(int ee=r;ee<tmp[p].size()&&q+qq<tmp[e].size();ee++,qq++) { if(tmp[e][q+qq]==tmp[p][ee]) { rr++; mm=max(mm,rr); } else { break; } } } } } if(mm>=m) { arr[e].push_back(p); arr[p].push_back(e); } } } queue<int> q; for(int e=0;e<n;e++) { if(arr[e].size()) { dp[e]=1; q.push(e); break; } } while(!q.empty()) { int now=q.front();q.pop(); for(int e=0;e<arr[now].size();e++) { int next=arr[now][e]; if(dp[next]==1) { if(dp[now]==1) { cout << "No"; return 0; } } if(dp[next]==2) { if(dp[now]==2) { cout << "No"; return 0; } } if(dp[next]==0) { if(dp[now]==1) dp[next]=2; if(dp[now]==2) dp[next]=1; q.push(next); } } } for(int e=0;e<n;e++) if(dp[e]==0) dp[e]=1; int pp=0; for(int e=0;e<n;e++) if(dp[e]==1) pp++; if(pp==0) dp[0]=1; if(pp==n) dp[0]=2; cout << "Yes\n"; for(int e=0;e<n;e++) cout << dp[e] << "\n"; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 2044 KB | Output is correct |
2 | Correct | 0 ms | 2044 KB | Output is correct |
3 | Correct | 0 ms | 2044 KB | Output is correct |
4 | Incorrect | 0 ms | 2044 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |