結果
問題 | No.197 手品 |
ユーザー |
![]() |
提出日時 | 2024-09-25 16:07:58 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,728 bytes |
コンパイル時間 | 2,131 ms |
コンパイル使用メモリ | 202,060 KB |
最終ジャッジ日時 | 2025-02-24 12:13:04 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 43 |
ソースコード
#include<bits/stdc++.h>using namespace std;using uint = unsigned int;using ll = long long;using ull = unsigned long long;template<class T> using V = vector<T>;template<class T> using VV = V<V<T>>;template<class T> using VVV = V<VV<T>>;template<class T> using VVVV = VV<VV<T>>;#define rep(i,n) for(ll i=0ll;i<n;i++)#define REP(i,a,n) for(ll i=a;i<n;i++)const long long INF = (1LL << 60);const long long mod99 = 998244353;const long long mod107 = 1000000007;const long long mod = mod99;#define eb emplace_back#define be(v) (v).begin(),(v).end()#define all(i,v) for(auto& i : v)#define UQ(v) sort(be(v)), v.erase(unique(be(v)), v.end())#define LB(x,v) (lower_bound(be(v),(x))-(v).begin())#define UB(x,v) (upper_bound(be(v),(x))-(v).begin())#define dout() cout << fixed << setprecision(20)#define randinit() srand((unsigned)time(NULL))template<class T, class U> bool chmin(T& t, const U& u) { if (t > u){ t = u; return 1;} return 0; }template<class T, class U> bool chmax(T& t, const U& u) { if (t < u){ t = u; return 1;} return 0; }void solve(){string s,t;ll n;cin >> s >> n >> t;ll cs = 0, ct = 0;for(auto c:s) cs += (c == 'o');for(auto c:t) ct += (c == 'o');set<string> st;st.insert(s);rep(i, min(n, 10-n%2)){set<string> nst;for(auto s:st){swap(s[0], s[1]);nst.insert(s);swap(s[0], s[1]);swap(s[1], s[2]);nst.insert(s);}swap(st, nst);}// for(auto s:st) cout << s << endl;if(st.count(t)) cout << "FAILURE" << endl;else cout << "SUCCESS" << endl;}int main(){cin.tie(nullptr);ios::sync_with_stdio(false);int t=1;// cin >> t;rep(i,t) solve();}