답안 #28368

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
28368 2017-07-16T05:03:23 Z /*Sn*/(#1133, jjwdi0) Play Onwards (FXCUP2_onward) C++11
0 / 1
0 ms 2184 KB
#include <bits/stdc++.h>
using namespace std;

int N, K, D[22][22];
char A[202][22];
int adj[202][202], num[202];
bool chk;

void add_edge(int x, int y) {
    memset(D, 0, sizeof(D));
    int alen = strlen(A[x]), blen = strlen(A[y]);
    int res = 0;
    for(int i=0; i<alen; i++) for(int j=0; j<blen; j++) {
        if(A[x][i] != A[y][j]) D[i][j] = 0;
        else if(i == 0 || j == 0) D[i][j] = 1;
        else D[i][j] = D[i-1][j-1] + 1;
        res = max(res, D[i][j]);
    }
    if(res >= K) adj[x][y] = adj[y][x] = 1;
}

void dfs(int x, int y) {
    num[x] = y;
    for(int i=1; i<=N; i++) if(adj[x][i] && !num[i]) {
        if(num[i] == num[x]) chk = 1;
        else dfs(i, 3 - y);
    }
}

int main() {
    scanf("%d %d", &N, &K);
    for(int i=1; i<=N; i++) scanf("%s", A[i]);
    for(int i=1; i<=N; i++) for(int j=i+1; j<=N; j++) add_edge(i, j);
    for(int i=1; i<=N; i++) if(!num[i]) dfs(i, 1);
    if(chk) return puts("NO"),0;
    puts("YES");
    for(int i=1; i<=N; i++) printf("%d\n", num[i]);
}

Compilation message

onward.cpp: In function 'int main()':
onward.cpp:31:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &N, &K);
                           ^
onward.cpp:32:46: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i=1; i<=N; i++) scanf("%s", A[i]);
                                              ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 2184 KB Output isn't correct
2 Halted 0 ms 0 KB -