結果

問題 No.3183 Swap or Rotate
ユーザー HoyHoyCharhang
提出日時 2025-06-20 21:39:03
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,144 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 281,136 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-06-20 21:39:10
合計ジャッジ時間 6,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define fi first
#define se second
#define rep(i,s,n) for (int i = (s); i < (n); ++i)
#define rrep(i,n,g) for (int i = (n)-1; i >= (g); --i)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define len(x) (int)(x).size()
#define dup(x,y) (((x)+(y)-1)/(y))
#define pb push_back
#define eb emplace_back
#define Field(T) vector<vector<T>>
using namespace std;
using ll = long long;
using ull = unsigned long long;
template<typename T> using pq = priority_queue<T,vector<T>,greater<T>>;
using P = pair<int,int>;
template<class T>bool chmax(T&a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T>bool chmin(T&a,T b){if(b<a){a=b;return 1;}return 0;}

int main() {
  int n;
  cin >> n;
  vector<int> p(n);
  rep(i,0,n) cin >> p[i];
  string ans = "";
  rep(i,0,n*n) {
    int ok = 1;
    rep(i,0,n) {
      if (p[i] != i) ok = 0;
    }
    if (ok) break;
    if (p[0] < p[1]) {
      swap(p[0], p[1]);
      ans += 'S';
    }
    p.eb(p[0]);
    p.erase(p.begin());
    ans += 'R';
    // rep(i,0,n) {
    //   cout << p[i] << " ";
    // }
    // cout << endl;
  }
  cout << ans << endl;
  return 0;
}
0