Submission #28290

# Submission time Handle Problem Language Result Execution time Memory
28290 2017-07-16T04:26:42 Z 볼빨간 승관이(#1152, sys7961, deneb2016, hyorothy) Play Onwards (FXCUP2_onward) C++11
0 / 1
0 ms 2028 KB
#include<bits/stdc++.h>

int n, k;
char str[210][25];
long long B = 255;
bool connect(int a, int b) {
	int A = strlen(str[a]);
	int B = strlen(str[b]);
	for (int i = 0; i + k < A; i++) {
		for (int j = 0; j + k < B; j++) {
			if (strncmp(str[a] + i, str[b] + j, k) == 0)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

onward.cpp: In function 'bool dfs(int)':
onward.cpp:21: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:36: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:38:22: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s", str[i]);
                      ^
# Verdict Execution time Memory Grader output
1 Correct 0 ms 2028 KB Output is correct
2 Correct 0 ms 2028 KB Output is correct
3 Correct 0 ms 2028 KB Output is correct
4 Correct 0 ms 2028 KB Output is correct
5 Incorrect 0 ms 2028 KB Output isn't correct
6 Halted 0 ms 0 KB -