結果

問題 No.947 ABC包囲網
ユーザー aajisakaaajisaka
提出日時 2019-12-10 21:31:11
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 2,074 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 174,096 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-06 07:38:33
合計ジャッジ時間 19,929 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 4 ms
4,376 KB
testcase_16 AC 3 ms
4,380 KB
testcase_17 AC 3 ms
4,380 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 4 ms
4,380 KB
testcase_20 AC 4 ms
4,384 KB
testcase_21 AC 4 ms
4,376 KB
testcase_22 AC 4 ms
4,376 KB
testcase_23 AC 4 ms
4,380 KB
testcase_24 AC 4 ms
4,376 KB
testcase_25 AC 3 ms
4,384 KB
testcase_26 AC 3 ms
4,380 KB
testcase_27 AC 4 ms
4,376 KB
testcase_28 AC 433 ms
4,376 KB
testcase_29 AC 725 ms
4,380 KB
testcase_30 AC 449 ms
4,380 KB
testcase_31 AC 718 ms
4,380 KB
testcase_32 AC 722 ms
4,376 KB
testcase_33 AC 725 ms
4,376 KB
testcase_34 AC 722 ms
4,380 KB
testcase_35 AC 718 ms
4,380 KB
testcase_36 AC 724 ms
4,380 KB
testcase_37 AC 719 ms
4,380 KB
testcase_38 AC 725 ms
4,380 KB
testcase_39 AC 720 ms
4,380 KB
testcase_40 AC 717 ms
4,376 KB
testcase_41 AC 714 ms
4,376 KB
testcase_42 AC 720 ms
4,380 KB
testcase_43 AC 723 ms
4,380 KB
testcase_44 AC 728 ms
4,384 KB
testcase_45 AC 723 ms
4,384 KB
testcase_46 AC 726 ms
4,380 KB
testcase_47 AC 724 ms
4,376 KB
testcase_48 AC 720 ms
4,380 KB
testcase_49 AC 711 ms
4,376 KB
testcase_50 AC 711 ms
4,380 KB
testcase_51 AC 2 ms
4,376 KB
testcase_52 AC 2 ms
4,380 KB
testcase_53 AC 2 ms
4,380 KB
testcase_54 AC 2 ms
4,380 KB
testcase_55 AC 2 ms
4,376 KB
testcase_56 AC 1 ms
4,376 KB
testcase_57 AC 5 ms
4,380 KB
testcase_58 AC 4 ms
4,384 KB
testcase_59 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 * code generated by JHelper
 * More info: https://github.com/AlexeyDmitriev/JHelper
 * @author aajisaka
 */

#include<bits/stdc++.h>

using namespace std;

void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
  cerr << " " << to_string(H);
  debug_out(T...);
}
#ifdef LOCAL
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif

#define SPEED ios_base::sync_with_stdio(false);cin.tie(nullptr)
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define all(v) v.begin(), v.end()
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }

using ll = long long;
using P = pair<ll, ll>;

constexpr double PI = 3.14159265358979323846;
mt19937_64 engine(chrono::steady_clock::now().time_since_epoch().count());

class ABChouimou {
public:
    void solve(istream& cin, ostream& cout) {
      SPEED;
      int n; cin >> n;
      vector<P> p(n);
      vector<long double> rad(n);
      long double PID = M_PI;
      rep(i, n) {
        cin >> p[i].first >> p[i].second;
        rad[i] = atan2((long double)p[i].second, (long double)p[i].first);
        if (rad[i] < 0) {
          rad[i] += 2*PID;
        }
      }
      long double eps = 1e-15;
      rep(i, n) {
        rad.push_back(rad[i]+2*PID);
      }

      sort(all(rad));


      ll ans = 0;
      for(int i=0; i<n; i++) {
        debug(i, rad[i]);
        for(int j=i+1; rad[j]<rad[i]+PID-eps; j++) {
          auto u = rad[i];
          auto v = rad[j];
          auto it1 = lower_bound(all(rad), u+PID+eps);
          auto it2 = lower_bound(all(rad), v+PID-eps);
          int now = distance(it1, it2);
          debug(i, j, now);
          ans += max(0, now);
        }
      }
      cout << ans/3 << endl;
    }
};

signed main() {
  ABChouimou solver;
  std::istream& in(std::cin);
  std::ostream& out(std::cout);
  solver.solve(in, out);
  return 0;
}
0