結果
問題 | No.199 星を描こう |
ユーザー | codershifth |
提出日時 | 2016-01-10 22:22:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 3,050 bytes |
コンパイル時間 | 1,445 ms |
コンパイル使用メモリ | 167,504 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 13:55:05 |
合計ジャッジ時間 | 2,155 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> typedef long long ll; typedef unsigned long long ull; #define FOR(i,a,b) for(int (i)=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define RANGE(vec) (vec).begin(),(vec).end() using namespace std; template<typename T> struct Pt { T x, y; Pt(T x0, T y0) : x(x0), y(y0) {} Pt() :x(0),y(0) {} const Pt operator+(const Pt &other) const { return Pt(x+other.x, y+other.y); } const Pt operator-(const Pt &other) const { return Pt(x-other.x, y-other.y); } Pt &operator+=(const Pt &other) { x += other.x; y += other.y; return *this; } Pt &operator-=(const Pt &other) { x -= other.x; y -= other.y; return *this; } Pt operator*(double r) const { return Pt(x*r, y*r); } bool operator<(const Pt &other) const { return (x < other.x)? true : ((x==other.x)? (y < other.y) : false); } bool operator<=(const Pt &other) const { return (*this == other)? true : (*this < other); } bool operator>(const Pt &other) const { return (other < *this); } bool operator>=(const Pt &other) const { return (other <= *this); } bool operator==(const Pt &other) const { return (x==other.x && y==other.y); } bool operator!=(const Pt &other) const { return !(operator==(other)); } double norm(void) const { return hypot(x, y); } // class method static double cross(const Pt &a, const Pt &b) { return ((double)a.y*b.x - (double)a.x*b.y); } static double dot(const Pt &a, const Pt &b) { return (double)a.x*b.x+(double)a.y*b.y; } friend std::ostream &operator<<(std::ostream &os, const Pt &p) { os <<"("<<p.x<<","<<p.y<<")"; return os; } // O(n*log(n)) static std::vector<Pt> convex_hull(std::vector<Pt> &ps) { std::sort(ps.begin(), ps.end()); int k = 0; int n = ps.size(); vector<Pt> qs(2*n); for (int i = 0; i < n; ++i) { while (k > 1 && cross(qs[k-1]-qs[k-2], ps[i]-qs[k-1]) <= 0) --k; qs[k++] = ps[i]; } for (int i = n-2, t = k; i >= 0; --i) { while (k > t && cross(qs[k-1]-qs[k-2], ps[i]-qs[k-1]) <= 0) --k; qs[k++] = ps[i]; } qs.resize(k-1); qs.shrink_to_fit(); return std::move(qs); } }; template<typename T> Pt<T> operator*(double r, const Pt<T> &p) { return p*r; } typedef Pt<double> Ptd; class WriteStars { public: void solve(void) { vector<Ptd> verts(5); REP(i,5) { int x,y; cin>>x>>y; verts[i] = Ptd(x,y); } auto pts = Ptd::convex_hull(verts); if (pts.size() == 5) cout<<"YES"<<endl; else cout<<"NO"<<endl; } }; #if 1 int main(int argc, char *argv[]) { ios::sync_with_stdio(false); auto obj = new WriteStars(); obj->solve(); delete obj; return 0; } #endif