Canada Cup 2016 C. Hidden Word
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Canada Cup 2016 C. Hidden Word相关的知识,希望对你有一定的参考价值。
题解:
构造题...当时想到了怎么做了。。
无奈码力太弱,一个位置写错了 fst
具体思路是。只要相同的字母不是相邻的,就一定可以构造
具体构造方法是把相同的字母的这一段放在最右边
xxxxxxxxx-----
xxxxxxxxxx----
如上图所示,然后X处就转圈画了..
代码:
#include<bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define se second #define fs first #define LL long long #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 typedef pair<int,int> P; const double eps=1e-9; const int maxn=200100; const int mod=1e9+7; const int INF=1e9; vector<int> v[30]; string s; int a[30]; int main() { cin>>s; for(int i=0;i<27;i++) v[s[i]-‘A‘].pb(i); int flag=0,pos,pre; for(int i=0;i<27;i++) { if(v[i].size()<=1) continue; for(int j=1;j<v[i].size();j++) { if(v[i][j]-v[i][j-1]!=1) { flag=1; pre=v[i][j-1]; pos=v[i][j]; break; } } } if(!flag) cout<<"Impossible"<<endl; else { int k=pos-pre; if(k%2) { k/=2; k++; for(int i=13-k+1;i<=13;i++) a[i]=pre++; k--; for(int i=26;i>=26-k+1;i--) a[i]=pre++; int j=26-k; for(j=26-k;j>=14;j--) { ++pos; if(pos>26) break; a[j]=pos; } if(pos>26) { int m=0; if(j>=14) { while(j>=14) a[j--]=m++; } j=1; while(j<13-k) a[j++]=m++; } else if(j<14) { j=1; pos++; while(pos<=26) a[j++]=pos++; int m=0; while(j<13-k) a[j++]=m++; } } else { k/=2; for(int i=13-k+1;i<=13;i++) a[i]=pre++; for(int i=26;i>=26-k+1;i--) a[i]=pre++; int j=26-k; for(j=26-k;j>=14;j--) { ++pos; if(pos>26) break; a[j]=pos; } if(pos>26) { int m=0; if(j>=14) { while(j>=14) a[j--]=m++; } j=1; while(j<=13-k) a[j++]=m++; } else if(j<14) { j=1; pos++; while(pos<=26) a[j++]=pos++; int m=0; while(j<=13-k) a[j++]=m++; } } for(int i=1;i<=13;i++) cout<<s[a[i]]; cout<<endl; for(int i=14;i<=26;i++) cout<<s[a[i]]; cout<<endl; } return 0; }
以上是关于Canada Cup 2016 C. Hidden Word的主要内容,如果未能解决你的问题,请参考以下文章
C. Helga Hufflepuff's Cup 树形dp 难
codeforces cf round#505(based on vk cup 2018 final) C. Plasticine zebra
Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) C. String Reconstruction
Playrix Codescapes Cup (Codeforces Round #413, rated, Div. 1 + Div. 2) C. Fountains 树状数组维护区间最大值(示(代
Codeforces Round #477 (rated, Div. 2, based on VK Cup 2018 Round 3) C. Stairs and Elevators二分查找(示例(代
Codeforces Round #470 (rated, Div. 2, based on VK Cup 2018 Round 1)C. Producing Snow+差分标记