Codeforces Round #528 (Div. 2) A. Right-Left Cipher 模擬
題解
題目大意 給一個加密後的串 問原串是什麼 加密規則是第一個字元在中間後面的右邊一個左邊一個
計算第一個的位置 然後然後兩個指標模擬即可
AC程式碼
#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 0x3f3f3f3f;
int main()
{
#ifdef LOCAL
//freopen("C:/input.txt", "r", stdin);
#endif
string s;
cin >> s;
int l = (s.size() - 1) / 2;
int r = l + 1;
while (l >= 0 || r < s.size())
{
cout << s[l--];
if (r < s.size())
cout << s[r++];
}
cout << endl;
return 0;
}
相關推薦
Codeforces Round #528 (Div. 2) A. Right-Left Cipher 模擬
題解 題目大意 給一個加密後的串 問原串是什麼 加密規則是第一個字元在中間後面的右邊一個左邊一個 計算第一個的位置 然後然後兩個指標模擬即可 AC程式碼 #include <stdio.h> #include <bits/stdc++.h> using
Right-Left Cipher Codeforces Round #528 (Div. 2-A
題面: Polycarp loves ciphers. He has invented his own cipher called Right-Left. Right-Left cipher is used for strings. To encrypt the string s=s1s2…
Codeforces Round #417 (Div. 2) A. Sagheer and Crossroads 模擬 枚舉
ces color 一次 name exit main cst space amp Codeforces Round #417 (Div. 2) A. Sagheer and Crossroads 模擬 枚舉 題意 一個紅綠燈 按逆時針方向一次給出各個路口的左轉,
Codeforces Round #528 (Div. 2, based on Technocup 2019 Elimination Round 4)-A. Right-Left Cipher(模擬)
題目連結:http://codeforces.com/contest/1087/problem/A 題意:給你一個加密後的字串讓你解密。加密的過程是 思路:從中間開始向兩邊輸出,如果是偶數再多輸出一位。 #include<bits/stdc++.h> u
Codeforces Round #528 (Div. 2, based on Technocup 2019 Elimination Round 4) A Right-Left Cipher
題目:Right-Left Cipher 思路:直接模擬就可以了。相當於先輸出中間的字元,然後往右一個,再往左兩個,再往右三個這樣子跳著輸出。 程式碼: #include<bits/stdc++.h> using namespace std; #define r
Codeforces Round #416 (Div. 2) A+B
src separate not sum redo swe tput output depend A. Vladik and Courtesy 2 seconds 256 megabytes At regular competition Vl
Codeforces Round #422 (Div. 2) A. I'm bored with life 暴力
out line leave c++ ren round ... from cif A. I‘m bored with life Holidays have finished. Thanks to the help of t
Codeforces Round #306 (Div. 2) A
return code add stl ext scan java pac 一個 題意 給一個字符串(長度<=10^5)。問當中有沒有一個”BA”和一個”AB”呢?假設都有而且它們不反復(即ABA不算),輸出YES。否則輸出NO。 思路 一開
Codeforces Round #FF (Div. 2) A. DZY Loves Hash
turn esp while integer each lov article opera title DZY has a hash table with p buckets, numbered from 0 to p?-?1. He wants to ins
Codeforces Round #426 (Div. 2)A B C題+賽後小結
ase com || namespace inf exp test 鏈接 %d 最近比賽有點多,可是好像每場比賽都是被虐,單純磨礪心態的作用。最近講的內容也有點多,即便是點到為止很淺顯的版塊,刷了專題之後的狀態還是~"咦,能做,可是並沒有把握能A啊"。每場網絡賽,我似乎
Codeforces Round #422 (Div. 2) A-C
put math def flag tdi mem ostream bag cmp A. I‘m bored with life 水題 #include <iostream> #include <cstring> #include <
Codeforces Round #423 (Div. 2) A-C
include 組成 tro return for can sta har min A. Restaurant Tables 這裏看錯題意還wa了兩發.... 按題意模擬就行了 水題 #include <iostream> #include <
Codeforces Round #424 (Div. 2) A-C
namespace ios nim tmp main 一個 ... blog cin A. Unimodal Array 水題 #include <iostream> #include <cstring> #include <cst
Codeforces Round #363 (Div. 2) A-C
ani ++ string 表示 math ems 所有 output name A. Launch of Collider 找最近的R和L之間的距離 #include <iostream> #include <cstring> #inc
Codeforces Round #431 (Div. 2) A
... mda for index val because else into ces Where do odds begin, and where do they end? Where does hope emerge, and will they ever brea
【Codeforces Round #447 (Div. 2) A】QAQ
pro ont 題解 problem fde c語言 span bits endif 【鏈接】 我是鏈接,點我呀:) 【題意】 在這裏輸入題意 【題解】 C語言程序練習題 【代碼】 #include <bits/stdc++.h> using
Codeforces Round #197 (Div. 2) A. Helpful Maths【字符串/給一個連加計算式,只包含數字 1、2、3,要求重新排序,使得連加的數字從小到大】
asi man title problem beginning 排序 stand should cati A. Helpful Maths time limit per test 2 seconds memory limit per t
Codeforces Round #283 (Div. 2) A. Minimum Difficulty【一個數組定義困難值是兩個相鄰元素之間差的最大值。 給一個數組,可以去掉任意一個元素,問剩余數列的困難值的最小值是多少】
分析 options force minimum sta cif als 最小 技術分享 A. Minimum Difficulty time limit per test 2 seconds memory limit per test 256 mega
Codeforces Round #453 (Div. 2) a-c
!= force gpo n) return sizeof size nod amp A. Visiting a Friend 水題,但是需要註意段點初,及最後的位置 代碼如下: #include <iostream> #include <stdio.h
【Codeforces Round #457 (Div. 2) A】 Jamie and Alarm Snooze
als lar clu efi out .com bit source fin 【鏈接】 我是鏈接,點我呀:) 【題意】 在這裏輸入題意 【題解】 暴力往前走x分鐘就好。 直到出現7為止。 【代碼】 #include <bits/stdc++.h&