結果
問題 | No.2718 Best Consonance |
ユーザー | 沙耶花 |
提出日時 | 2024-04-05 22:18:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,320 bytes |
コンパイル時間 | 3,986 ms |
コンパイル使用メモリ | 268,292 KB |
実行使用メモリ | 275,112 KB |
最終ジャッジ日時 | 2024-10-01 03:29:27 |
合計ジャッジ時間 | 51,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,878 ms
26,012 KB |
testcase_01 | AC | 2,777 ms
17,820 KB |
testcase_02 | AC | 2,909 ms
10,804 KB |
testcase_03 | AC | 2,902 ms
11,004 KB |
testcase_04 | AC | 2,837 ms
11,052 KB |
testcase_05 | AC | 2,914 ms
10,824 KB |
testcase_06 | AC | 2,754 ms
10,784 KB |
testcase_07 | AC | 2,844 ms
10,908 KB |
testcase_08 | AC | 3,339 ms
10,912 KB |
testcase_09 | AC | 2,485 ms
10,784 KB |
testcase_10 | AC | 2,544 ms
11,028 KB |
testcase_11 | AC | 2,489 ms
10,904 KB |
testcase_12 | AC | 2,502 ms
10,876 KB |
testcase_13 | AC | 2,481 ms
10,844 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 int op(int a,int b){ return max(a,b); } int e(){ return -Inf32; } int main(){ //ios::sync_with_stdio(false); //std::cin.tie(nullptr); int n; cin>>n; vector<vector<long long>> bs(200001); rep(i,n){ int a,b; scanf("%d %d",&a,&b); bs[a].push_back(b); } rep(i,bs.size()){ if(bs[i].size()>2){ sort(bs[i].rbegin(),bs[i].rend()); while(bs[i].size()>2)bs[i].pop_back(); reverse(bs[i].begin(),bs[i].end()); } } long long ok = 0,ng = Inf32; segtree<int,op,e> seg(200001); while(ng-ok>1){ long long mid = (ok+ng)/2; bool f = false; for(long long i=1;i<=200000;i++){ for(long long j=i;j<=200000;j+=i){ rep(k,bs[j].size()){ long long a = j,b = bs[j][k]; long long R = (b * i) / mid; R++; R = min(R,200001LL); if(i*seg.prod(0,R) >= mid*a){ f = true; break; } seg.set(a,max((long long)seg.get(a),b)); } if(f)break; } for(long long j=i;j<=200000;j+=i){ seg.set(j,-Inf32); } if(f)break; } if(f)ok = mid; else ng = mid; } cout<<ok<<endl; return 0; }