結果

問題 No.2740 Old Maid
ユーザー rotti_coderrotti_coder
提出日時 2024-04-20 10:22:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 681 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 94,368 KB
実行使用メモリ 33,052 KB
最終ジャッジ日時 2024-10-12 05:53:26
合計ジャッジ時間 17,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
32,924 KB
testcase_01 AC 383 ms
32,928 KB
testcase_02 AC 372 ms
32,920 KB
testcase_03 AC 394 ms
32,924 KB
testcase_04 AC 403 ms
32,928 KB
testcase_05 AC 400 ms
32,928 KB
testcase_06 AC 387 ms
32,920 KB
testcase_07 AC 394 ms
32,920 KB
testcase_08 AC 377 ms
33,052 KB
testcase_09 AC 388 ms
32,928 KB
testcase_10 AC 382 ms
32,924 KB
testcase_11 AC 324 ms
32,924 KB
testcase_12 AC 447 ms
23,988 KB
testcase_13 AC 464 ms
25,488 KB
testcase_14 AC 68 ms
8,192 KB
testcase_15 AC 95 ms
9,728 KB
testcase_16 AC 322 ms
19,208 KB
testcase_17 AC 62 ms
8,064 KB
testcase_18 AC 445 ms
24,632 KB
testcase_19 AC 149 ms
12,288 KB
testcase_20 AC 535 ms
28,140 KB
testcase_21 AC 76 ms
8,704 KB
testcase_22 AC 316 ms
18,848 KB
testcase_23 AC 49 ms
6,820 KB
testcase_24 AC 147 ms
11,904 KB
testcase_25 AC 617 ms
29,568 KB
testcase_26 AC 5 ms
6,816 KB
testcase_27 AC 30 ms
6,820 KB
testcase_28 AC 326 ms
19,104 KB
testcase_29 AC 304 ms
18,180 KB
testcase_30 AC 10 ms
6,820 KB
testcase_31 AC 681 ms
32,268 KB
testcase_32 AC 187 ms
13,440 KB
testcase_33 AC 629 ms
30,796 KB
testcase_34 AC 273 ms
18,168 KB
testcase_35 AC 130 ms
11,648 KB
testcase_36 AC 142 ms
12,288 KB
testcase_37 AC 212 ms
15,492 KB
testcase_38 AC 114 ms
10,752 KB
testcase_39 AC 56 ms
7,552 KB
testcase_40 AC 380 ms
22,020 KB
testcase_41 AC 529 ms
27,872 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 1 ms
6,816 KB
testcase_49 AC 2 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 2 ms
6,820 KB
testcase_53 AC 2 ms
6,816 KB
testcase_54 AC 2 ms
6,816 KB
testcase_55 AC 2 ms
6,820 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 2 ms
6,820 KB
testcase_58 AC 2 ms
6,816 KB
testcase_59 AC 2 ms
6,816 KB
testcase_60 AC 1 ms
6,820 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 1 ms
6,820 KB
testcase_63 AC 2 ms
6,820 KB
testcase_64 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
#include<set>
using namespace std;
int main()
{
  int n;
  cin >> n;
  vector<int>p(n);
  for(int i=0;i<n;i++)cin >> p[i];
  map<int,int>dict;
  map<int,int>dict2;
  for(int i=0;i<n-1;i++)dict[p[i]]=p[i+1];
  for(int i=1;i<n;i++)dict2[p[i]]=p[i-1];
  set<int>st;
  int x=p[0],y=p[n-1];
  vector<int>ans;
  for(int i=1;i<=n;i++){
    if(i==y)continue;
    if(st.count(i))continue;
    st.insert(i);
    st.insert(dict[i]);
    ans.emplace_back(i);
    ans.emplace_back(dict[i]);
    if(x!=i && y!=dict[i]){
      dict[dict2[i]]=dict[dict[i]];
      dict2[dict[dict[i]]]=dict2[i];
    }
    else if(x==i && y!=dict[i])x=dict[dict[i]];
    else if(y==dict[i] && x!=i)y=dict2[i];
    else break;
  }
  for(int i=0;i<n;i++)cout << ans[i] << " ";
  cout << endl;
}
0