結果
| 問題 |
No.2738 CPC To F
|
| コンテスト | |
| ユーザー |
Shibaken28
|
| 提出日時 | 2024-04-20 10:34:49 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 3,451 bytes |
| コンパイル時間 | 1,319 ms |
| コンパイル使用メモリ | 121,108 KB |
| 実行使用メモリ | 5,824 KB |
| 最終ジャッジ日時 | 2024-10-12 06:07:51 |
| 合計ジャッジ時間 | 2,005 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#include <iostream> // cout, endl, cin
#include <string> // string, to_string, stoi
#include <vector> // vector
#include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound
#include <utility> // pair, make_pair
#include <tuple> // tuple, make_tuple
#include <cstdint> // int64_t, int*_t
#include <cstdio> // printf
#include <map> // map
#include <queue> // queue, priority_queue
#include <set> // set
#include <stack> // stack
#include <deque> // deque
#include <unordered_map> // unordered_map
#include <unordered_set> // unordered_set
#include <bitset> // bitset
#include <cctype> // isupper, islower, isdigit, toupper, tolower
#include <iomanip>
#include <climits>
#include <cmath>
#include <functional>
#include <numeric>
#include <regex>
#include <array>
#include <fstream>
#include <sstream>
//#include<atcoder/modint>
//using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep1(i, n) for (int i = 1; i <= (int)(n); i++)
#define repl(i,l,r) for (int i = l; i < (int)(r); i++)
#define all(a) a.begin(),a.end()
#define Pii pair<int,int>
#define Pll pair<long,long>
#define INFi 1000000001
#define INFl 1000000000000000001
#define ll long long
using namespace std;
template<class T> inline bool chmin(T& a, T b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<class T> inline bool chmax(T& a, T b) {
if (a < b) {
a = b;
return true;
}
return false;
}
template<class T> void printArray(vector<T>&A){
for(T&a:A){
cout<<a<<" ";
}
cout<<endl;
}
template<class T> void printArrayln(vector<T>&A){
for(T&a:A){
cout<<a<<endl;
}
}
template<class T1,class T2> std::ostream &operator<<(std::ostream &out, const pair<T1,T2> &A){
cout<<"{"<<A.first<<","<<A.second<<"}";
return out;
}
template<class T1,class T2> std::ostream &operator<<(std::ostream &out, const map<T1,T2> &M){
for(const auto&A:M){
cout<<"{"<<A.first<<","<<A.second<<"}";
}
return out;
}
template<class T1> std::ostream &operator<<(std::ostream &out, const set<T1> &M){
cout<<"{";
for(const auto&A:M){
cout<<A<<", ";
}
cout<<"}"<<endl;
return out;
}
template<class T1> std::ostream &operator<<(std::ostream &out, const multiset<T1> &M){
cout<<"{";
for(const auto&A:M){
cout<<A<<", ";
}
cout<<"}"<<endl;
return out;
}
template<class T> std::ostream &operator<<(std::ostream &out, const vector<T> &A){
for(const T &a:A){
cout<<a<<" ";
}
return out;
}
void print() { cout << endl; }
template <typename Head, typename... Tail>
void print(Head H, Tail... T) {
cout << H << " ";
print(T...);
}
template<class T> std::istream &operator>>(std::istream &in,vector<T>&A){
for(T&a:A){
std::cin>>a;
}
return in;
}
int main(void){
std::cin.tie(0)->sync_with_stdio(0);
int N;cin>>N;
string S;cin>>S;
S=" "+S;
vector<string> target = {"CPCTF","CPCTCPC"};
vector<int> dp(N+1,0); //dp[i]:= i文字目まで読んでtargetが含まれる最大数
for(int i=1;i<=N;i++){
chmax(dp[i],dp[i-1]);
for(auto t:target){
int m = t.size();
if(i-m+1>=1){
string sub = S.substr(i-m+1,m);
if(sub==t){
chmax(dp[i],dp[i-m]+1);
}
}
}
}
cout<<dp[N]<<endl;
}
Shibaken28