結果
問題 | No.601 Midpoint Erase |
ユーザー | aaa |
提出日時 | 2018-09-15 10:41:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 79 ms / 2,000 ms |
コード長 | 2,152 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 104,104 KB |
実行使用メモリ | 8,548 KB |
最終ジャッジ日時 | 2024-07-08 13:47:12 |
合計ジャッジ時間 | 2,445 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 53 ms
6,940 KB |
testcase_04 | AC | 58 ms
7,272 KB |
testcase_05 | AC | 40 ms
6,940 KB |
testcase_06 | AC | 23 ms
6,940 KB |
testcase_07 | AC | 55 ms
7,260 KB |
testcase_08 | AC | 46 ms
6,940 KB |
testcase_09 | AC | 57 ms
7,260 KB |
testcase_10 | AC | 13 ms
6,944 KB |
testcase_11 | AC | 79 ms
8,548 KB |
testcase_12 | AC | 37 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,944 KB |
ソースコード
#include <stdio.h> #include <algorithm> #include <iostream> #include <string> #include <vector> #include <functional> #include <map> #include <iomanip> #include <math.h> #include <stack> #include <queue> #include <bitset> #include <cstdlib> #include <tuple> #include <cctype> #include <ctype.h> #include <set> using namespace std; int main() { int i, j, k; int n; vector<vector<long>>xy, xyki, xygu, xy3, xy4(0, vector<long>(2)); cin >> n; for (i = 0; i < n; i++) { long num1, num2; cin >> num1 >> num2; if (num1 % 2 == 0 && num2 % 2 == 0) { xygu.push_back({ num1, num2 }); } else if (num1 % 2 == 1 && num2 % 2 == 1) { xyki.push_back({ num1, num2 }); } else if (num1 % 2 == 1 && num2 % 2 == 0) { xy3.push_back({ num1, num2 }); } else if (num1 % 2 == 0 && num2 % 2 == 1) { xy4.push_back({ num1, num2 }); } else { xy.push_back({ num1,num2 }); } } int cnt = 0; if (xygu.size() > 0) { cnt += xygu.size() / 2; } if (xyki.size() > 0) { cnt += xyki.size() / 2; } if (xy3.size() > 0) { cnt += xy3.size() / 2; } if (xy4.size() > 0) { cnt += xy4.size() / 2; } bool flag = false; //falseはアリス if (cnt > 0) { if (cnt % 2 == 0) { flag = false; } else if(cnt%2==1){ flag = true; } } while (true) { bool flag2 = false; for (i = 0; i < xy.size(); i++) { long numx = xy[i][0]; long numy = xy[i][1]; for (j = i+1; j < xy.size(); j++) { if (i == j)continue; if (abs(xy[j][0] - numx) >= 1 && abs(xy[j][1] - numy) >= 1 && abs(xy[j][0] - numx) % 2 == 0 && abs(xy[j][1] - numy) % 2 == 0) { if (flag == false) { flag = true; } else if (flag == true) { flag = false; } flag2 = true; cnt++; if (i > j) { xy.erase(xy.begin() + i); xy.erase(xy.begin() + j); } else { xy.erase(xy.begin() + j); xy.erase(xy.begin() + i); } break; } } if (flag2 == true) break; } if (flag2 == false) break; } if (cnt == 0) { cout << "Bob" << endl; } else if (flag == true) { cout << "Alice" << endl; } else { cout << "Bob" << endl; } getchar(); getchar(); return 0; }