Submission #28293

#TimeUsernameProblemLanguageResultExecution timeMemory
28293볼빨간 승관이 (#68)Play Onwards (FXCUP2_onward)C++11
1 / 1
23 ms2296 KiB
#include<bits/stdc++.h> int n, k; char str[210][25]; long long B = 255; bool connect(int a, int b) { std::set<long long> set; for (int i = 0; str[a][i + k - 1] != '\0'; i++) { long long h = 0; for (int j = 0; j < k; j++) { h *= B; h += str[a][i + j]; } set.insert(h); } for (int i = 0; str[b][i + k - 1] != '\0'; i++) { long long h = 0; for (int j = 0; j < k; j++) { h *= B; h += str[b][i + j]; } if (set.count(h))return true; } return false; } using std::vector; vector<int> G[210]; int color[210]; bool dfs(int idx) { for(int i=0;i<G[idx].size();i++) { int to = G[idx][i]; if (color[to] == 0) { color[to] = -color[idx]; if (!dfs(to)) { return false; } } else if (color[to] == color[idx]) { return false; } } return true; } int main() { scanf("%d%d", &n, &k); for (int i = 0; i < n; i++) { scanf("%s", str[i]); } for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { if (connect(i, j)) { G[i].push_back(j); G[j].push_back(i); } } } int p = 1; for (int i = 0; i < n; i++) { if (color[i] == 0) { color[i] = p; p = -p; if (!dfs(i)) { printf("No"); return 0; } } } printf("Yes\n"); for (int i = 0; i < n; i++) { if (color[i] == -1) { printf("2\n"); } else { printf("1\n"); } } }

Compilation message (stderr)

onward.cpp: In function 'bool dfs(int)':
onward.cpp:31:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<G[idx].size();i++) {
               ^
onward.cpp: In function 'int main()':
onward.cpp:46:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &n, &k);
                       ^
onward.cpp:48:22: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s", str[i]);
                      ^
#Verdict Execution timeMemoryGrader output
Fetching results...