夢追い人

"It takes a dreamer to make a dream come true."―Vincent Willem van Gogh

SRM147 Div.2 Easy CCipher

健康診断から帰ってきました!

視力上がってましたよ(笑)

charの計算

今回は

PROBLEM STATEMENT

Julius Caesar used a system of cryptography, now known as 
Caesar Cipher, which shifted each letter 2 places further 
through the alphabet (e.g. 'A' shifts to 'C', 'R' shifts 
to 'T', etc.). At the end of the alphabet we wrap around, 
that is 'Y' shifts to 'A'.

We can, of course, try shifting by any number. Given an 
encoded text and a number of places to shift, decode it.

For example, "TOPCODER" shifted by 2 places will be 
encoded as "VQREQFGT". In other words, if given (quotes 
for clarity) "VQREQFGT"  and 2 as input, you will return 
"TOPCODER". See example 0 below.


DEFINITION
Class:CCipher
Method:decode
Parameters:string, int
Returns:string
Method signature:string decode(string cipherText, int shift)


CONSTRAINTS
  • cipherText has between 0 to 50 characters inclusive
  • each character of cipherText is an uppercase letter 'A'-'Z'
  • shift is between 0 and 25 inclusive

簡単に言えばアルファベットをシフトした暗号文与えるから元の文字列取り出せよ…と。

昔の暗号ですわな。なんですっけ?シーザー暗号?


まぁいいや。これではcharの計算が重要になります。
charでは文字列と数字によって演算できます。

例えばこんな感じ

'A'+9='J'
'A'+25='Z'

わかり易いところで。

というわけでコレを利用しあとは実装のみ。
で、コードがコレ。

class CCipher {
   public:
   string decode(string cipherText, int shift)
  {
	for (int i=0; i<cipherText.length(); i++) {
		cipherText[i] -= shift;
		if (cipherText[i] < 'A') cipherText[i] += 26;
	}
	return cipherText;
  }
};

だんだん。だんだんとEasyばっかだと簡単な気がしてきましたがまぁ良しとしましょう。

それでは!