結果
問題 | No.2355 Unhappy Back Dance |
ユーザー | norikame |
提出日時 | 2023-08-02 22:57:32 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,661 ms / 6,000 ms |
コード長 | 1,546 bytes |
コンパイル時間 | 5,288 ms |
コンパイル使用メモリ | 321,028 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 21:14:10 |
合計ジャッジ時間 | 26,152 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 60 ms
6,820 KB |
testcase_07 | AC | 58 ms
6,820 KB |
testcase_08 | AC | 160 ms
6,816 KB |
testcase_09 | AC | 164 ms
6,820 KB |
testcase_10 | AC | 339 ms
6,816 KB |
testcase_11 | AC | 360 ms
6,820 KB |
testcase_12 | AC | 171 ms
6,816 KB |
testcase_13 | AC | 170 ms
6,820 KB |
testcase_14 | AC | 433 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 1,645 ms
6,816 KB |
testcase_17 | AC | 1,650 ms
6,816 KB |
testcase_18 | AC | 1,656 ms
6,816 KB |
testcase_19 | AC | 1,653 ms
6,816 KB |
testcase_20 | AC | 1,661 ms
6,820 KB |
testcase_21 | AC | 676 ms
6,816 KB |
testcase_22 | AC | 123 ms
6,820 KB |
testcase_23 | AC | 131 ms
6,816 KB |
testcase_24 | AC | 1,473 ms
6,820 KB |
testcase_25 | AC | 792 ms
6,820 KB |
testcase_26 | AC | 811 ms
6,816 KB |
testcase_27 | AC | 702 ms
6,820 KB |
testcase_28 | AC | 16 ms
6,816 KB |
testcase_29 | AC | 37 ms
6,820 KB |
testcase_30 | AC | 1,346 ms
6,816 KB |
testcase_31 | AC | 972 ms
6,816 KB |
testcase_32 | AC | 96 ms
6,816 KB |
testcase_33 | AC | 554 ms
6,816 KB |
testcase_34 | AC | 7 ms
6,816 KB |
testcase_35 | AC | 18 ms
6,820 KB |
testcase_36 | AC | 685 ms
6,816 KB |
testcase_37 | AC | 361 ms
6,820 KB |
testcase_38 | AC | 442 ms
6,820 KB |
testcase_39 | AC | 348 ms
6,820 KB |
ソースコード
// #include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; #define rep(i, n) for (int i=0; i<(int)(n); ++(i)) #define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i)) #define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i)) #define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i)) #define all(x) (x).begin(), (x).end() const int INF = (int)(1e9); struct fraction { ll num, den; fraction(ll num=0, ll den=1) { this->num = num, this->den = den; if (this->num == 0 && this->den == 0) return; if (this->den == 0) this->num /= abs(this->num); else if (this->num == 0) this->den /= abs(this->den); else { ll gval = gcd(abs(this->num), abs(this->den)); this->num /= gval, this->den /= gval; } } bool operator<(const fraction& other) const { return make_pair(num, den) < make_pair(other.num, other.den); } bool operator<=(const fraction& other) const { return make_pair(num, den) <= make_pair(other.num, other.den); } }; int main() { int n; cin >> n; vector<ll> x(n), y(n); rep(i, n) cin >> x[i] >> y[i]; if (n <= 1) { cout << 0 << endl; return 0; } unordered_set<int> st; rep(i, n) { vector<pair<fraction, int>> flst; rep(j, n) if (j != i) flst.emplace_back(fraction(y[j]-y[i], x[j]-x[i]), j); set<fraction> fst; rep(j, n-1) fst.insert(flst[j].first); for (auto& [fr, id] : flst) { fraction tfl(-fr.num, -fr.den); if (fst.find(tfl) != fst.end()) st.insert(id); } } cout << (int)(st.size()) << endl; return 0; }