Submission #31230

#TimeUsernameProblemLanguageResultExecution timeMemory
31230leejseo먼 별 (KOI16_dist)C++98
2 / 100
46 ms1908 KiB
#include <stdio.h> #include <algorithm> #include <stdlib.h> #include <vector> using namespace std; #define square(a) ((a) * (long long)(a)) #define MAX_T 10000000 #define MAX_N 30000 class Star { public: inline void read() { scanf("%d%d%d%d", &m_org_x, &m_org_y, &m_dx, &m_dy); } inline int x() const { return m_x; } inline int y() const { return m_y; } inline void place(int t) { m_x = m_org_x + t * m_dx; m_y = m_org_y + t * m_dy; } inline long long distance(const Star &other) const { return square(m_x - other.m_x) + square(m_y - other.m_y); } private: int m_org_x; int m_org_y; int m_dx; int m_dy; int m_x; int m_y; }; inline long long CCW(const Star &P, const Star &P1, const Star &P2) { return (P1.x() - P.x()) * (P2.y() - P.y()) - (P1.y() - P.y()) * (P2.x() - P.x()); } inline bool operator<(const Star &a, const Star &b) { if (a.x() < b.x()) return true; if (a.x() > b.x()) return false; return a.y() < b.y(); } inline bool check_inc_upper(vector<Star> &UP, vector<Star> &LO, int i, int j) { return (UP[i + 1].y() - UP[i].y()) * (LO[j].x() - LO[j - 1].x()) > (LO[j].y() - LO[j - 1].y()) * (UP[i + 1].x() - UP[i].x()); } inline void convex_hull(Star stars[], int n, int t, vector<Star> &UP, vector<Star> &LO) { UP.clear(); LO.clear(); sort(stars, stars + n); for (int i = 0; i < n; i++) { while ((UP.size() > 1) && (CCW(UP[UP.size() - 2], UP[UP.size() - 1], stars[i]) >= 0)) UP.pop_back(); while ((LO.size() > 1) && (CCW(LO[LO.size() - 2], LO[LO.size() - 1], stars[i]) <= 0)) LO.pop_back(); UP.push_back(stars[i]); LO.push_back(stars[i]); } } inline long long farthest_distance(Star stars[], int n, int t) { for (int i = 0; i < n; i++) stars[i].place(t); vector<Star> UP, LO; convex_hull(stars, n, t, UP, LO); int i = 0; int j = LO.size() - 1; long long farthest = 0; long long dist; while ((i < (int)UP.size() - 1) || (j > 0)) { dist = UP[i].distance(LO[j]); if (dist > farthest) farthest = dist; if (i == (int)UP.size() - 1) j--; else if (j == 0) i++; else if (check_inc_upper(UP, LO, i, j)) i++; else j--; } dist = UP[i].distance(LO[j]); if (dist > farthest) farthest = dist; return farthest; } int seek_day(Star stars[], int n, int T, long long &farthest) { int left = 0; int right = T; while (left <= right) { int L = (2 * left + right)/3; int R = (left + 2 * right + 1)/3; if (farthest_distance(stars, n, L) <= farthest_distance(stars, n, R)) right = R - 1; else left = L + 1; } farthest = farthest_distance(stars, n, left); return left; } int main() { int n, T; Star stars[MAX_N]; scanf("%d%d", &n, &T); for (int i=0; i<n; i++) stars[i].read(); long long d; int day = seek_day(stars, n, T, d); printf("%d\n", day); printf("%lld\n", d); return 0; }

Compilation message (stderr)

dist.cpp: In function 'int main()':
dist.cpp:126:30: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d", &n, &T);
                              ^
dist.cpp: In member function 'void Star::read()':
dist.cpp:18:76: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
                         scanf("%d%d%d%d", &m_org_x, &m_org_y, &m_dx, &m_dy);
                                                                            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...