結果

問題 No.3640 Babies don't like Bat Beat
コンテスト
ユーザー shobonvip
提出日時 2026-08-25 14:55:38
言語 C++23
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 107 ms / 2,000 ms
+ 678µs
コード長 2,094 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,080 ms
コンパイル使用メモリ 381,376 KB
実行使用メモリ 15,864 KB
最終ジャッジ日時 2026-08-25 14:55:50
合計ジャッジ時間 7,576 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
サブタスク 配点 結果
サンプル 0 %
小課題1 10 % AC * 5
小課題2 10 % AC * 10
小課題3 15 % AC * 5
小課題4 20 % AC * 10
小課題5 20 % AC * 15
小課題6 25 % AC * 33
合計 100 点
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

/**
	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();
}

0