結果
問題 | No.1121 Social Distancing in Cinema |
ユーザー | jupiro |
提出日時 | 2020-07-22 22:56:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,306 bytes |
コンパイル時間 | 1,331 ms |
コンパイル使用メモリ | 139,576 KB |
実行使用メモリ | 144,952 KB |
最終ジャッジ日時 | 2024-06-23 00:04:37 |
合計ジャッジ時間 | 12,459 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 17 ms
5,376 KB |
testcase_17 | AC | 142 ms
9,600 KB |
testcase_18 | AC | 433 ms
15,104 KB |
testcase_19 | AC | 582 ms
17,152 KB |
testcase_20 | AC | 5 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 34 ms
7,040 KB |
testcase_26 | AC | 54 ms
8,064 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 457 ms
15,360 KB |
testcase_29 | AC | 49 ms
7,808 KB |
testcase_30 | AC | 53 ms
6,940 KB |
testcase_31 | AC | 576 ms
17,152 KB |
testcase_32 | AC | 347 ms
13,696 KB |
testcase_33 | AC | 81 ms
7,808 KB |
testcase_34 | AC | 79 ms
7,808 KB |
testcase_35 | AC | 409 ms
14,464 KB |
testcase_36 | AC | 586 ms
16,640 KB |
testcase_37 | AC | 53 ms
6,656 KB |
testcase_38 | AC | 114 ms
8,448 KB |
testcase_39 | AC | 503 ms
15,232 KB |
testcase_40 | AC | 24 ms
6,016 KB |
testcase_41 | AC | 5 ms
5,376 KB |
testcase_42 | AC | 537 ms
16,512 KB |
testcase_43 | AC | 525 ms
16,512 KB |
testcase_44 | TLE | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } //constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; //constexpr long long mod = 1000000007LL; constexpr long long mod = 998244353LL; const long double PI = acos((long double)(-1)); using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ int n; scanf("%d", &n); int k = (n + 89) / 90; vector<int> x(n), y(n); for (int i = 0; i < n; i++) scanf("%d %d", &x[i], &y[i]); int idx = min_element(x.begin(), x.end()) - x.begin(); set<pair<int, int>> s; for (int i = 0; i < n; i++) s.emplace(x[i], i); vector<int> res; res.emplace_back(idx); s.erase(s.find({ x[idx], idx })); while (res.size() < k) { if (s.empty()) { res.clear(); int idx = min_element(y.begin(), y.end()) - y.begin(); set<pair<int, int>> s; for (int i = 0; i < n; i++) s.emplace(y[i], i); res.emplace_back(idx); s.erase(s.find({ y[idx],idx })); } auto [t, p] = *s.begin(); s.erase(s.begin()); bool ok = true; for (auto e : res) { int len2 = (x[e] - x[p]) * (x[e] - x[p]) + (y[e] - y[p]) * (y[e] - y[p]); if (len2 < 100) { ok = false; break; } } if (ok) res.emplace_back(p); } cout << res.size() << "\n"; for (int i = 0; i < res.size(); i++) cout << res[i] + 1<< " \n"[i + 1 == res.size()]; return 0; }