陳老師的多校聯合 D題 字串處理起來挺麻煩
http://vjudge.net/contest/view.action?cid=51327#problem/D
Description
Yoda: May the Force be with you.
Master Yoda is the oldest member of the Jedi Council. He conducts preparatory classes of little Younglings up to the moment they get a mentor. All Younglings adore master Yoda and they hope to grow as strong and wise as he is.
Just like all little children, Younglings are absolutely hooked on new games and ideas. Now they decided to learn to speak just like master Yoda. Help the Younglings understand how Yoda would say this or that sentence.
Yoda is speaking the Galactic language using the specific word order — so-called "object-subject-verb".
Your program receives a sentence that interests the Younglings. They have already highlighted all important parts in the sentence. They use the curly {}-brackets for objects, round ()-brackets for subjects and square []-brackets
for verbs.
A sentence in the input can be simple or complex. If the sentence is complex, then it consists of two simple sentences separated by a comma. Sometimes a comma is followed by a conjunction that is not in the brackets.
Each simple question has exactly one object, one subject and one verb. Your task is to simply put them in the correct order. Namely, first the object, then the subject, finally the verb. Also, please do not forget that only the
first word in the whole sentence should begin with capital letter.
Input
The single line contains a sentence that interests the Younglings. The length of the sentence does not exceed 100 characters. All the words in the sentence consist of Latin letters. The first letter of the first word is capitalized
and the rest are small. The sentence may contain a comma. Each simple sentence contains all three types of brackets. Each pair of brackets surrounds one or more words. No pair of brackets can surround the other bracket. Brackets are always located on the borders
of words. The words in the sentence are separated by a single space. There is no space character before a comma or a closing bracket and also after an opening bracket. The conjunction (which can be only after a comma) is the only word that is not surrounded
by a pair of brackets.
Output
Print the sentence with the word order Yoda would use. All brackets must be omitted. You should separate the words by a single space.
Sample Input
input |
---|
(We) [are] {blind}, if (we) [could not see] {creation of this clone army} |
output |
Blind we are, if creation of this clone army we could not see |
input |
{Truly wonderful} (the mind of a child) [is] |
output |
Truly wonderful the mind of a child is |
#include <stdio.h>
#include <string.h>
#include <iostream>
using namespace std;
char all[1002];
int main()
{
memset(all,0,sizeof(all));
while(gets(all)!=NULL)
{
int count=-1;
for(int i=0; all[i]!=0; i++)
{
if(all[i]==',')
{
count=i-1;
break;
}
}
if(count!=-1)
{
int big1=0;
int big2=0;
int mid1=0;
int mid2=0;
int sma1=0;
int sma2=0;
for(int i=0; i<=count; i++)
{
if(all[i]=='[')
mid1=i+1;
if(all[i]==']')
mid2=i-1;
if(all[i]=='(')
sma1=i+1;
if(all[i]==')')
sma2=i-1;
if(all[i]=='{')
big1=i+1;
if(all[i]=='}')
big2=i-1;
}
if(all[big1]>='a')
printf("%c",all[big1]-'a'+'A');
else
printf("%c",all[big1]);
for(int i=big1+1; i<=big2; i++)
printf("%c",all[i]);
printf(" ");
for(int i=sma1; i<=sma2; i++)
if(all[i]<='Z'&&all[i]>='A')
printf("%c",all[i]-'A'+'a');
else
printf("%c",all[i]);
printf(" ");
for(int i=mid1; i<=mid2; i++)
if(all[i]<='Z'&&all[i]>='A')
printf("%c",all[i]-'A'+'a');
else
printf("%c",all[i]);
printf(",");
for(int i=count+1; all[i]!=0; i++)
{
if(all[i]>='a'&&all[i]<='z')
printf("%c",all[i]);
if(all[i]==' ')
printf(" ");
if(all[i]=='('||all[i]=='['||all[i]=='{')
{
count=i;
break;
}
}
big1=0;
big2=0;
mid1=0;
mid2=0;
sma1=0;
sma2=0;
for(int i=count; all[i]!=0; i++)
{
if(all[i]=='[')
mid1=i+1;
if(all[i]==']')
mid2=i-1;
if(all[i]=='(')
sma1=i+1;
if(all[i]==')')
sma2=i-1;
if(all[i]=='{')
big1=i+1;
if(all[i]=='}')
big2=i-1;
}
for(int i=big1; i<=big2; i++)
printf("%c",all[i]);
printf(" ");
for(int i=sma1; i<=sma2; i++)
printf("%c",all[i]);
printf(" ");
for(int i=mid1; i<=mid2; i++)
printf("%c",all[i]);
printf("\n");
}
else
{
int big1=0;
int big2=0;
int mid1=0;
int mid2=0;
int sma1=0;
int sma2=0;
for(int i=0; all[i]!=0; i++)
{
if(all[i]=='[')
mid1=i+1;
if(all[i]==']')
mid2=i-1;
if(all[i]=='(')
sma1=i+1;
if(all[i]==')')
sma2=i-1;
if(all[i]=='{')
big1=i+1;
if(all[i]=='}')
big2=i-1;
}
if(all[big1]>='a')
printf("%c",all[big1]-'a'+'A');
else
printf("%c",all[big1]);
for(int i=big1+1; i<=big2; i++)
if(all[i]<='Z'&&all[i]>='A')
printf("%c",all[i]-'A'+'a');
else
printf("%c",all[i]);
printf(" ");
for(int i=sma1; i<=sma2; i++)
if(all[i]<='Z'&&all[i]>='A')
printf("%c",all[i]-'A'+'a');
else
printf("%c",all[i]);
printf(" ");
for(int i=mid1; i<=mid2; i++)
if(all[i]<='Z'&&all[i]>='A')
printf("%c",all[i]-'A'+'a');
else
printf("%c",all[i]);
printf("\n");
}
memset(all,0,sizeof(all));
}
return 0;
}
相關文章
- 陳老師的多校聯合20140816A題||spoj 10228 動態規劃動態規劃
- 動態庫的麻煩之處
- 彭老師:您好!關於JF中資料查詢更新問題/分頁問題,麻煩您在百忙中指點迷津。多謝!
- 寫一個好用的多頁面webpack配置有多麻煩。。。Web
- Jbuilder2006帶來的麻煩事(JDK 版本問題)UIJDK
- CORBA的麻煩事... (轉)ORB
- 信奧賽一本通陳老師解題 1128:影像模糊處理
- java的new真的給我們帶來了麻煩嗎?Java
- 麻煩各位高手幫忙
- 信奧一本通題陳老師解題:1032:大象喝水查
- 一個比較麻煩的限流需求
- 南沙陳老師解題重排列1234使得每個數字都在不同原來位置上
- 信奧一本通題陳老師解題:1086:角谷猜想
- Mac上檔案太多找起來很麻煩?試試這個Mac
- 修改使用者密碼引來的一系列麻煩密碼
- HTML高亮關鍵字真麻煩HTML
- PHP程式設計師函式註釋規格(麻煩大家遵守)PHP程式設計師函式
- 最近寫了幾個 Laravel 擴充套件用來減少工作的麻煩Laravel套件
- 南沙C++陳老師解一本通題:1091:求階乘的和C++
- 記錄一次非常麻煩的除錯除錯
- 寫最少的程式碼,避免給自己找麻煩
- 寫最少的程式碼 避免給自己找麻煩
- 信奧賽陳老師解一本通題: 1070:人口增長
- 基礎-vuex真是太麻煩了Vue
- 第14講 | HTTP協議:看個新聞原來這麼麻煩HTTP協議
- noip多校聯考總結
- 2011-2-13 陳老師UIE筆記UI筆記
- 2011-2.26 陳老師UIE筆記UI筆記
- 2014多校聯合第十場A題||hdu 4971 最小割定理在最大權閉合圖上的應用
- new BigDecimal時,請使用字串作為引數為最佳,避免不必要的麻煩Decimal字串
- 使用Datomic實現沒有麻煩的事件溯源事件
- 第八章 分散式系統的麻煩分散式
- linux下中文安裝oracle--麻煩LinuxOracle
- 板橋,J道上搜尋有問題呀,搜尋出來的都是亂碼!麻煩你解決一下!
- 2014多校聯合第9場1011題||hdu 4970 樹狀陣列陣列
- 南沙信C++陳老師解一本通題: 1101:不定方程求解C++
- 麻煩把JS的事件環給我安排一下!!!JS事件
- 我正在改JIVE,但碰到很麻煩的問題,希望能幫忙解決