codeforces 784-div4(感觉这个难度有点逆天,呼呼的做水题)

题目

D
题意: 略。
思路: 找规律的题,一开始没发现,写了一个奇奇怪怪的。最后看了题解原来是这样,一段不存在W的区间必须满足B和R都存在,否则肯定不行。我也这么想的,不过写麻烦了。
时间复杂度: O(n)
代码:

// Problem: D. Colorful Stamp
// Contest: Codeforces - Codeforces Round #784 (Div. 4)
// URL: https://codeforces.com/contest/1669/problem/D
// Memory Limit: 256 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#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<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> 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);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> 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;
void solve()
{
   cin>>n;
   string s; cin>>s;
   s = "W" + s; s += "W";
   bool ok = 1;
   for(int i=1;i<=n;++i)
   {
   	  if(s[i]!='W')
   	  {
   	  int j = i;
   	  bool flag1 = 0,flag2 = 0;
   	  while(j<=n && s[j]!='W') 
   	  {
   	  	  if(s[j]=='R')flag1 = 1;
   	  	  if(s[j]=='B')flag2 = 1;
   	  	  ++j;
   	  }
   	  if(flag1&&flag2) ;
   	  else ok = 0;
   	  i = j-1;
   	  }
   }
   if(ok) cout<<"YES\n";
   else cout<<"NO\n";
}
signed main(void)
{  
   // T = 1;
   OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

E
题意: 略。
思路: 用了26^3,其实可以优化,对于每个字母d都乘以前边的所有字母就好了,维护一个变量,即可达到26 ^2。另外,还可以边输入边统计贡献,都不用26 ^2枚举。对于每个字符串,这两个字母,分别+前边有多少个相同位置的相同字母。但是考虑到相同的字符串,还要减去相同字符串数量的2倍,因为两个位置都多计算了一次。
时间复杂度: O(nlogn)可以达到O(n)
代码:

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#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<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> 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);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> 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;
int cnt[2][30];
map<string,int> mp;
void solve()
{
   mem(cnt,0);
   mp.clear();
   cin>>n;
   ll ans = 0;
   for(int i=0;i<n;++i)
   {
   	  string s; cin>>s;
   	  ans += cnt[0][s[0]-'a'];
   	  ans += cnt[1][s[1]-'a'];
   	  ans -= mp[s]*2;
   	  cnt[0][s[0]-'a']++;
   	  cnt[1][s[1]-'a']++;
   	  mp[s]++;
   }
   cout<<ans<<"\n";
}
signed main(void)
{  
   T = 1;
   OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值