欧拉计划Problem 59

Each character on a computer is assigned a unique code and the preferred standard is ASCII (American Standard Code for Information Interchange). For example, uppercase A = 65, asterisk (*) = 42, and lowercase k = 107.

A modern encryption method is to take a text file, convert the bytes to ASCII, then XOR each byte with a given value, taken from a secret key. The advantage with the XOR function is that using the same encryption key on the cipher text, restores the plain text; for example, 65 XOR 42 = 107, then 107 XOR 42 = 65.

For unbreakable encryption, the key is the same length as the plain text message, and the key is made up of random bytes. The user would keep the encrypted message and the encryption key in different locations, and without both "halves", it is impossible to decrypt the message.

Unfortunately, this method is impractical for most users, so the modified method is to use a password as a key. If the password is shorter than the message, which is likely, the key is repeated cyclically throughout the message. The balance for this method is using a sufficiently long password key for security, but short enough to be memorable.

Your task has been made easy, as the encryption key consists of three lower case characters. Using cipher1.txt (right click and 'Save Link/Target As...'), a file containing the encrypted ASCII codes, and the knowledge that the plain text must contain common English words, decrypt the message and find the sum of the ASCII values in the original text.



#define N 3000


int main()
{
clock_t ts,te;
ts=clock();
int answer = 0;
int num[N] ={0};
int i = 0;
FILE *f;
f = fopen("59.txt","r");
for (char c = fgetc(f); c != EOF; c = fgetc(f))
{
if (c!=',')
{
num[i] = num[i]*10+c-'0';
}else
{
i++;
}
}
fclose(f);
int max_sum = 0,max_alpha = 0;
int temp_alpha = 0,temp_sum = 0;
for (int count = 0; count < 3 ;count++)
{
max_sum = 0;
max_alpha = 0;
for (c = 'a'; c <='z'; c++)
{
temp_alpha = 0;
temp_sum = 0;
for (int j = count; j < i; j+=3)
{
char temp = num[j]^c;
if (isalpha(temp))
{
temp_alpha++;
}
temp_sum += temp;
}
if (temp_alpha > max_alpha)
{
printf("%c,",c);
max_alpha = temp_alpha;
max_sum = temp_sum;
}
}
printf("\n");
answer +=max_sum;
}
printf("\nanswer %d",answer);
te=clock();
printf("\ntime difference: %ds\n",(te-ts)/CLOCKS_PER_SEC);
getchar();
return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值