結果
問題 | No.101 ぐるぐる!あみだくじ! |
ユーザー | tkzw_21 |
提出日時 | 2014-12-25 14:47:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 914 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 84,088 KB |
実行使用メモリ | 14,008 KB |
最終ジャッジ日時 | 2024-06-12 05:02:03 |
合計ジャッジ時間 | 11,387 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | AC | 1 ms
6,944 KB |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 1 ms
6,940 KB |
testcase_37 | TLE | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <iostream> #include <cmath> #include <vector> #include <utility> #include <queue> #include <map> #include <string> #include <cstring> #include <list> #include <algorithm> #define INF 114514 using namespace std; typedef pair<double,double> P; bool check(const vector<int> &a){ for(int i=0;i<a.size();i++){ if(a[i] != i)return false; } return true; } int main(void){ int n,k; cin >> n >> k; vector<int> x(n),y(n); for(int i=0;i<k;i++){ cin >> x[i] >> y[i]; x[i]--;y[i]--; } vector<int> a(n),b; map<int,int> fx; for(int i=0;i<n;i++)a[i] = i; for(int i=0;i<k;i++)swap(a[x[i]],a[y[i]]); for(int i=0;i<n;i++)fx[i] = a[i]; // for(int i=0;i<n;i++)cout << a[i] << " "; // cout << endl; int cnt = 1; while(!check(a)){ b = a; for(int i=0;i<n;i++)a[i] = b[fx[i]]; cnt++; // for(int i=0;i<n;i++)cout << a[i] << " "; // cout << endl; } cout << cnt << endl; return 0; }