結果
問題 | No.2738 CPC To F |
ユーザー |
![]() |
提出日時 | 2024-04-20 11:50:24 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 1,800 bytes |
コンパイル時間 | 11,048 ms |
コンパイル使用メモリ | 275,120 KB |
最終ジャッジ日時 | 2025-02-21 06:16:38 |
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#define _USE_MATH_DEFINES#pragma GCC target("avx2")#pragma GCC optimize("O3")#pragma GCC optimize("unroll-loops")#include<bits/stdc++.h>#include<unordered_set>#include<random>#include <array>#include <complex>#include<chrono>//#include <atcoder/all>using namespace std;//using namespace atcoder;#define LP(I,S,G) for (long long int I = (S); I < (G); ++I)#define IN(X) for (int in = 0; in < X.size(); in++)cin >> X[in]#define OUT(X) for (int in = 0; in < X.size(); in++)cout << X[in]<<" "#define SORT(X) sort((X).begin(), (X).end())#define CSORT(X,Y) sort(X.begin(), X.end(),Y)#define COPY(X,Y) copy(X.begin(), X.end(), Y.begin())#define ALL(X,Y) for (auto &(X) :(Y))#define FULL(a) (a).begin(),(a).end()#define BFS(Q,S) for(Q.push(S);Q.size()!=0;Q.pop())typedef long long int ll;typedef unsigned long long int ull;long long int M = 998244353;chrono::system_clock::time_point starttime;using namespace std::chrono;inline float getTime() {return duration_cast<milliseconds>(system_clock::now() - starttime).count();}int dx[] = { -1,0,1,0 }, dy[] = { 0,1,0,-1 };ll MAX(ll A, ll B) { return ((A) > (B) ? (A) : (B)); }ll MIN(ll A, ll B) { return ((A) < (B) ? (A) : (B)); }inline long long int xor128() {static long long int x = 123456789, y = 362436069, z = 521288629, w = 88675123;long long int t = (x ^ (x << 11));x = y; y = z; z = w;return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));}int main() {ll n;cin >> n;string s,t;cin >> s;LP(i, 0, n) {t += s[i];if (t.size() >= 7) {if (string(t.end() - 7, t.end()) == "CPCTCPC") {t.pop_back();t.pop_back();*t.rbegin() = 'F';}}}ll ans = 0;LP(i, 0, t.size()-4) {if (string(t.begin() + i, t.begin() + i + 5) == "CPCTF")++ans;}cout << ans << "\n";return 0;}