看什么看,没见过拿十分的SB啊?

P3612 [USACO17JAN] Secret Cow Code S

_Ask_ @ 2021-05-16 08:48:43

充满好奇的问一下,这道题能用暴力解吗?

另外我剪枝不了了,麻烦dalao们教教SB好的方法

#include <bits/stdc++.h>
using namespace std;

int main(){
 string n;
 long long m;
 cin>>n>>m;
 long long num=m; 
    while(num>=0){
     string k=n.substr(n.size()-1,1);
     string j=n.erase(n.size()-1,1);
     n=j+k+k+j;
//     for(int i=0;i<=n.size();i++){
//      cout<<n[i]<<" ";
//  }
//  cout<<endl;
     num--;
 }
 cout<<n[m-1]<<endl;
} 

by KEBrantily @ 2021-05-16 08:56:17

  1. 不能

  2. 自己看题解

  3. 不会起标题就爬


by _Ask_ @ 2021-05-16 09:49:49

@KnightL dalao好屌啊,nbnb


by RE—自动机 @ 2021-08-25 08:12:30


by 清风雪月 @ 2021-09-05 20:04:44

@RE—自动机 为啥要举报


by Along_Dog @ 2021-09-19 10:32:52

#include<bits/stdc++.h>
using namespace std;
int main(){
  string st;
  cin>>st;
  cout<<st[0];
}

这个30分 话说这个算暴力吗


|