結果
| 問題 | No.3640 Babies don't like Bat Beat |
| コンテスト | |
| ユーザー |
shobonvip
|
| 提出日時 | 2026-08-25 14:54:28 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,095 bytes |
| 記録 | |
| コンパイル時間 | 4,107 ms |
| コンパイル使用メモリ | 381,420 KB |
| 実行使用メモリ | 15,864 KB |
| 最終ジャッジ日時 | 2026-08-25 14:54:43 |
| 合計ジャッジ時間 | 7,842 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| サブタスク | 配点 | 結果 |
|---|---|---|
| サンプル | 0 % | |
| 小課題1 | 10 % | AC * 5 |
| 小課題2 | 10 % | AC * 10 |
| 小課題3 | 15 % | AC * 4 WA * 1 |
| 小課題4 | 20 % | AC * 9 WA * 1 |
| 小課題5 | 20 % | AC * 14 WA * 1 |
| 小課題6 | 25 % | AC * 32 WA * 1 |
| 合計 | 20 点 |
ソースコード
/**
author: shobonvip
created: 2026.08.25 14:27:49
**/
#include<bits/stdc++.h>
using namespace std;
//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/
/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/
typedef long long ll;
#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()
template <typename T> bool chmin(T &a, const T &b) {
if (a <= b) return false;
a = b;
return true;
}
template <typename T> bool chmax(T &a, const T &b) {
if (a >= b) return false;
a = b;
return true;
}
template <typename T> T max(vector<T> &a){
assert(!a.empty());
T ret = a[0];
for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
return ret;
}
template <typename T> T min(vector<T> &a){
assert(!a.empty());
T ret = a[0];
for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
return ret;
}
template <typename T> T sum(vector<T> &a){
T ret = 0;
for (int i=0; i<(int)a.size(); i++) ret += a[i];
return ret;
}
void solve() {
int n; cin >> n;
vector<pair<pair<ll,ll>,ll>> mp;
auto add = [&](ll si,ll bo,int v) -> void {
ll g = __gcd(si,bo);
si /= g;
bo /= g;
mp.emplace_back(pair(si,bo),v);
};
ll now = 0;
rep(i,0,n) {
ll l, r; cin >> l >> r;
ll g = 1;
while (l > g) g <<= 1;
if (r >= g && r <= 2*g) {
now++;
add(r,g,-1);
}
if (2*l >= g && 2*l <= 2*g) {
add(2*l,g,+1);
}
if (2*r >= g && 2*r <= 2*g) {
add(2*r,g,-1);
}
if (4*l >= g && 4*l <= 2*g) {
add(4*l,g,+1);
}
if (4*r >= g && 4*r <= 2*g) {
add(4*r,g,-1);
}
}
sort(all(mp),[&](auto &a, auto &b) {
return a.first.first * b.first.second < a.first.second * b.first.first;
});
ll ans = now;
for (int i=0; i<=n;) {
int l = i;
ll c = 0;
while (mp[l].first == mp[i].first) {
c += mp[i].second;
i++;
}
now += c;
chmax(ans, now);
}
cout << ans << endl;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
shobonvip