程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> it-Cow Imposters

it-Cow Imposters

編輯:編程解疑
Cow Imposters

Description

FJ no longer uses the barbaric custom of branding to mark the cows that he owns. Instead, he creates a binary code of B (1 <= B <= 16) bits for each cow and embosses it onto a metal strip that is fastened to each cow's ear.

The cows have taken in a stray and wish to create an ID strip for it. Unknown to FJ, they have created a machine that can make a new ID strip by combining two existing ID strips using the XOR operation (ID strips are not consumed by this machine, and the same ID strip can be used for both inputs).

The cows wish to create a specific ID strip for the stray or at least get as close to a desired ID as possible -- with the smallest possible number of bits differing between the goal ID strip and the best possible new ID strip.

Given a set of E (1 <= E <= 100) existing ID strips, the goal ID strip, and a large number of blank ID strips to hold intermediate results, calculate the closest possible ID strip that can be created from the existing ID strips.

If more than one ID is closest, choose the one that can be created in the fewest steps. If there is still a tie, choose the `smallest' ID (i.e., if you sorted all the IDs, the one that is first).
Input

  • Line 1: Two space-separated integers: B and E.

  • Line 2: The goal ID string, represented as a string of B 0's and 1's (with no spaces).

  • Lines 3..E+2: Each line contains an existing ID string, represented as a string of B 0's and 1's (with no spaces).

Output

  • Line 1: A single integer that is the minimum number of steps required to create the best possible ID strip.

  • Line 2: A single line with the best possible ID strip that can be created from the E existing ID strips
    Sample Input

5 3
11100
10000
01000
00100
Sample Output

2
11100

最佳回答:


http://blog.csdn.net/yrleep/article/details/10421573

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved