結果
問題 | No.429 CupShuffle |
ユーザー | 👑 emthrm |
提出日時 | 2020-03-15 20:43:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,513 bytes |
コンパイル時間 | 2,429 ms |
コンパイル使用メモリ | 207,776 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 10:29:30 |
合計ジャッジ時間 | 5,262 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 2 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; const int INF = 0x3f3f3f3f; const ll LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // const int MOD = 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; const int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); } } iosetup; int main() { int n, k, x; cin >> n >> k >> x; --x; vector<int> a(k), b(k); REP(i, k) { char ai, bi; cin >> ai >> bi; if (ai != '?') { a[i] = (ai - '0') - 1; b[i] = (bi - '0') - 1; } } // REP(i, k) cout << a[i] << ' ' << b[i] << '\n'; vector<int> c(n); REP(i, n) cin >> c[i]; for (int i = k - 1; i > x; --i) swap(c[a[i]], c[b[i]]); // REP(i, n) cout << c[i] << " \n"[i + 1 == n]; vector<int> cup(n); iota(ALL(cup), 1); REP(i, x) swap(cup[a[i]], cup[b[i]]); vector<int> ans; REP(i, n) { if (c[i] != cup[i]) ans.emplace_back(i); } sort(ALL(ans)); cout << ans[0] + 1 << ' ' << ans[1] + 1 << '\n'; return 0; }