結果

問題 No.123 カードシャッフル
コンテスト
ユーザー Rp7rf
提出日時 2015-01-12 00:49:41
言語 C++11(廃止可能性あり)
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 592 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 532 ms
コンパイル使用メモリ 80,048 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2026-03-06 10:32:21
合計ジャッジ時間 1,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
using namespace std;
 
int main(void){
  int N,M;
  cin>>N>>M;
  vector<int> A(N);
  for(int i = 0 ; i < N ; i ++)A[i] = i+1;
  for(int i = 0 ; i < M ; i ++){
    int num;
    cin>>num;
//    cout<<num<<endl;
    vector<int> now;
    num --;
    now.push_back(A[num]);
    
    for(int j = 0 ; j < N ; j ++){
//      cout<<j+1<<" ";
      if(num == j) continue;
      now.push_back(A[j]);
    }
//    cout<<endl;
    for(int j = 0 ; j < now.size(); j++)
//      cout<<now[j]<<" ";
//    cout<<endl;cout<<endl;
    A = now;
    
  }
  cout<<A[0]<<endl;
}
0