# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1117395 | 2024-11-23T13:43:06 Z | Tenis0206 | Nicelines (RMI20_nicelines) | C++11 | 92 ms | 584 KB |
#include <bits/stdc++.h> #include "nice_lines.h" using namespace std; int cmax = 1e4; const long double eps = 1e-5; vector<int> a, b; long double my_query(long double A, long double B) { long double rez = query(A, B); for(int i=0;i<a.size();i++) { long double dist = 1.0 * abs(a[i] * A - B + b[i]) / sqrt(a[i] * a[i] + 1); rez -= dist; } return rez; } int aprox(long double val) { return (int)(val + 0.5); } void solve(int subtask_id, int n) { if(subtask_id == 4) { cmax = 500; } long long A = 2 * cmax; long long B = (A + 1) * cmax + 1; long double dif = my_query(A, B) - my_query(A, B - 1); for(int i=0;i<n;i++) { long long st = -(A + 1) * cmax - 1; long long dr = B - 1; long double dif_B = 0; while(st <= dr) { long long mij = (st + dr) >> 1LL; long double dif_mij = my_query(A, mij) - my_query(A, mij - 1); if(abs(dif_mij - dif) > eps) { dif_B = dif_mij; B = mij; st = mij + 1; } else { dr = mij - 1; } } if(B == 0) { a.push_back(0); b.push_back(B); } else { long double val_cos = 0.5 * (dif - dif_B); int cur_a = aprox(sqrt(1 - val_cos * val_cos) / val_cos); int cur_b = B - cur_a * A; if(cur_b < -cmax || cur_b > cmax) { cur_a *= (-1); cur_b = B - cur_a * A; } a.push_back(cur_a); b.push_back(cur_b); } } the_lines_are(a, b); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 336 KB | Output is correct |
2 | Correct | 3 ms | 336 KB | Output is correct |
3 | Correct | 2 ms | 336 KB | Output is correct |
4 | Correct | 3 ms | 336 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 336 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 336 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 92 ms | 584 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 42 ms | 336 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 92 ms | 584 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |