結果

問題 No.3183 Swap or Rotate
ユーザー 橋本ヒデヒコ
提出日時 2025-06-24 18:06:43
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 2,138 bytes
コンパイル時間 1,328 ms
コンパイル使用メモリ 145,632 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-24 18:06:46
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <algorithm>
#include <cmath>
#include <iterator>


using namespace std;

using i64 = int64_t;

template<class T>
using VV = vector<vector<T>>;

#define REP(i, n) for(i64 i = 0; i < i64(n); i++)
#define REP1(i, n) for(i64 i = 1; i <= i64(n); i++)

i64 INF = 100100100100100L;

i64 direct[8][2] = {
  {1, 0}, {0, -1}, {-1, 0}, {0, 1},
  {1, -1}, {-1, -1}, {-1, 1}, {1, 1}
};


template<class T, class S>
ostream &operator<<(ostream &os, pair<T, S> p);


template<class T>
ostream &operator<<(ostream &os, const vector<T> &v)
{
  for(i64 i = 0; i < i64(v.size()); i++) {
    if (i > 0) os << ' ';
    os << v[i];
  }

  return os;
}

template<class T>
ostream &operator<<(ostream &os, const set<T> &st)
{
  bool first = true;
  for(const T &it: st)
  if (first) {
      first = false;
      os << it;
  } else{
    os << ' ' << it;
  }

  return os;
}

template<class T, class S>
ostream &operator<<(ostream &os, map<T, S> &mp)
{
  bool first = true;
  for(const auto &[f, l]: mp)
  if (first) {
      first = false;
      os << '{' << f << "-> " << l << '}';
  } else{
    os << ", {" << f << "-> " << l << '}';
  }

  return os;
}


template<class T, class S>
ostream &operator<<(ostream &os, pair<T, S> p)
{
  os << '{' << p.first << ", " << p.second << '}';

  return os;
}



int main()
{
  i64 N;
  cin >> N;

  vector<i64> P(N);
  for(i64 &it: P)
    cin >> it;

  string ans;

  i64 offset = N;
  for(i64 i = N - 2; i >= 0; i--) {

    i64 ptr = 0;
    while (P[(ptr + offset) % N] != i)
      ptr++;

    if (P[(ptr + 1 + offset) % N] == i + 1)
      continue;

    offset += ptr;
    offset %= N;
    while (ptr--)
      ans.push_back('R');

    while (true) {

      swap(P[offset % N], P[(offset + 1) % N]);
      ans.push_back('S');
      if (P[(offset + 2) % N] == i + 1)
	break;
      offset++;
      offset %= N;
      ans.push_back('R');
    }
  }

  i64 i = 0;
  while (P[(i + offset) % N] != 0)
    i++;
  
  while (i--) {
    ans.push_back('R');
  }

  cout << ans << endl;
  
  return 0;
}
0