Description
Immediate Decodability |
An encoding of a set of symbols is said to be immediately decodable if no code for one symbol is the prefix of a code for another symbol. We will assume for this problem that all codes are in binary, that no two codes within a set of codes are the same, that each code has at least one bit and no more than ten bits, and that each set has at least two codes and no more than eight.
Examples: Assume an alphabet that has symbols {A, B, C, D}
The following code is immediately decodable:
A:01 B:10 C:0010 D:0000
but this one is not:
A:01 B:10 C:010 D:0000
(Note that A is a prefix of C)
The Sample Input describes the examples above.
01 10 0010 0000 9 01 10 010 0000 9
Set 1 is immediately decodable Set 2 is not immediately decodable
题意:判断两两是否存在前缀,有的话就是not immediately decodable
思路:单纯的判断
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int maxn = 20; char str[maxn][maxn]; int cmp(int i, int j) { int k; for (k = 0; str[i][k] && str[j][k]; k++) if (str[i][k] != str[j][k]) return 0; return 1; } int main() { int i = 0, ans = 1, flag = 0; while (scanf("%s", str[i]) != EOF) { if (str[i][0] == '9') { for (int k = 0; k < i; k++) { for (int j = k+1; j < i; j++) if (cmp(k, j)) { printf("Set %d is not immediately decodable\n", ans++); flag = 1; break; } if (flag) break; } if (!flag) printf("Set %d is immediately decodable\n", ans++); i = 0, flag = 0; } else i++; } return 0; }