日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

CF894A QAQ

發布時間:2023/12/16 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CF894A QAQ 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

CF894A QAQ

題意翻譯

題目大意: 給定一個字符串,字符串長度<=100,現在要求出字符串中'QAQ'的個數,注意,'QAQ'可以不連續,只要有順序就可以了,例如QABQ也有一個QAQ

Translated by @Hjl1777

題目描述

"QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth.

Now Diamond has given Bort a string consisting of only uppercase English letters of length?nn?. There is a great number of "QAQ" in the string (Diamond is so cute!).

illustration by 貓屋?https://twitter.com/nekoyaliuBort?wants to know how many subsequences "QAQ" are in the string Diamond has given. Note that the letters "QAQ" don't have to be consecutive, but the order of letters should be exact.

輸入輸出格式

輸入格式:

?

The only line contains a string of length?nn?(?1<=n<=1001<=n<=100?). It's guaranteed that the string only contains uppercase English letters.

?

輸出格式:

?

Print a single integer — the number of subsequences "QAQ" in the string.

?

輸入輸出樣例

輸入樣例#1:?復制 QAQAQYSYIOIWIN 輸出樣例#1:?復制 4 輸入樣例#2:?復制 QAQQQZZYNOIWIN 輸出樣例#2:?復制 3

說明

In the first example there are?44?subsequences "QAQ": "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN".

?

思路:組合數學搞一下就可以了。

#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; string s; int ans,t,q[100]; int main(){cin>>s;int len=s.size();for(int i=0;i<s.size();++i) q[i]=s[i]=='Q'?++t:t;for(int i=0;i<s.size();++i) if(s[i]=='A') ans+=q[i]*(t-q[i]);cout<<ans; }

?

轉載于:https://www.cnblogs.com/cangT-Tlan/p/8441357.html

總結

以上是生活随笔為你收集整理的CF894A QAQ的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。