牛客寒训营2 I(考察基本功的构造,构的并不是很造)

牛客寒训营2 I(考察基本功的构造,构的并不是很造),第1张

牛客寒训营2 I(考察基本功的构造,构的并不是很造)

题目
题意: 给定35个字符,有5对括号。构造一个长度为n,含有m种字符的回文串。该回文串要求对称位置可以为左右括号,也可以为剩余25个字符中的一种。(n<=1e4,m<=36)
思路: 若m > n或者m==36,无解。我感觉可以贪心,呼呼的先用括号,之后再用剩余字符。如果用括号用到m为0,且字符串还没有凑完,那就回退一下,删掉一个括号改用剩余字符。这里注意的是,用完括号以后,判断一下是否有解,如果剩余长度(len+1)/2,即上取整,仍不足以凑够剩余的需要数量,寄,无解。没想到这点,呼呼的错。
时间复杂度: O(n)
代码:

// Problem: 小沙的构造
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/contest/23477/I
// Memory Limit: 524288 MB
// Time Limit: 2000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex CP;
typedef pair PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 2e5+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
templatevoid write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
int n,m,k,T;
// "!'*+-.08:=^_WTYUIOAHXVM|<>/[]{}()
char s[N];
string use;
string crick = "<>\/[]{}()";
void print()
{
	for(int t=1;t<=n;++t) 
	{
		cout< n || m == 36) {puts("-1"); return;}
   fir(i,1,n) s[i] = '.';
   int i = 1,j = n;
   int idx = 0;
   while(m >= 2 && i 1 && i>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5718619.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存