题解:Codeforces Round 962 (Div. 3) D

D. Fun

time limit per test: 2 seconds

memory limit per test: 256 megabytes

input: standard input

output: standard output

Counting is Fun!


— satyam343

Given two integers n n n and x x x, find the number of triplets ( a , b , c a,b,c a,b,c) of positive integers such that a b + a c + b c ≤ n ab + ac + bc \le n ab+ac+bcn and a + b + c ≤ x a + b + c \le x a+b+cx.

Note that order matters (e.g. ( 1 , 1 , 2 1, 1, 2 1,1,2) and ( 1 , 2 , 1 1, 2, 1 1,2,1) are treated as different) and a a a, b b b, c c c must be strictly greater than 0 0 0.

给定两个整数 n n n x x x ,求 a b + a c + b c ≤ n ab + ac + bc \le n ab+ac+bcn a + b + c ≤ x a + b + c \le x a+b+cx个正整数的三联数( a , b , c a,b,c a,b,c )的个数。

注意顺序问题(例如 ( 1 , 1 , 2 1, 1, 2 1,1,2 ) 和 ( 1 , 2 , 1 1, 2, 1 1,2,1 ) 被视为不同), a a a b b b c c c 必须严格大于 0 0 0

Input

The first line contains a single integer t t t ( 1 ≤ t ≤ 1 0 4 1 \leq t \leq 10^4 1t104) — the number of test cases.

Each test case contains two integers n n n and x x x ( 1 ≤ n , x ≤ 1 0 6 1 \leq n,x \leq 10^6 1n,x106).

It is guaranteed that the sum of n n n over all test cases does not exceed 1 0 6 10^6 106 and that the sum of x x x over all test cases does not exceed 1 0 6 10^6 106.

输入

第一行包含一个整数 t t t ( 1 ≤ t ≤ 1 0 4 1 \leq t \leq 10^4 1t104 ) - 测试用例数。

每个测试用例包含两个整数 n n n x x x 1 ≤ n , x ≤ 1 0 6 1 \leq n,x \leq 10^6 1n,x106 )。( 1 ≤ n , x ≤ 1 0 6 1 \leq n,x \leq 10^6 1n,x106 ).

保证所有测试用例的 n n n 之和不超过 1 0 6 10^6 106 ,所有测试用例的 x x x 之和不超过 1 0 6 10^6 106

Output

Output a single integer — the number of triplets ( a , b , c a,b,c a,b,c) of positive integers such that a b + a c + b c ≤ n ab + ac + bc \le n ab+ac+bcn and a + b + c ≤ x a + b + c \le x a+b+cx.

输出

输出一个整数 - a b + a c + b c ≤ n ab + ac + bc \le n ab+ac+bcn a + b + c ≤ x a + b + c \le x a+b+cx 的正整数三元组( a , b , c a,b,c a,b,c )的个数。

Example

Input
4
7 4
10 5
7 1000
900000 400000
Output
4
10
7
1768016938

Note

In the first test case, the triplets are ( 1 , 1 , 1 1, 1, 1 1,1,1), ( 1 , 1 , 2 1, 1, 2 1,1,2), ( 1 , 2 , 1 1, 2, 1 1,2,1), and ( 2 , 1 , 1 2, 1, 1 2,1,1).

In the second test case, the triplets are ( 1 , 1 , 1 1, 1, 1 1,1,1), ( 1 , 1 , 2 1, 1, 2 1,1,2), ( 1 , 1 , 3 1, 1, 3 1,1,3), ( 1 , 2 , 1 1, 2, 1 1,2,1), ( 1 , 2 , 2 1, 2, 2 1,2,2), ( 1 , 3 , 1 1, 3, 1 1,3,1), ( 2 , 1 , 1 2, 1, 1 2,1,1), ( 2 , 1 , 2 2, 1, 2 2,1,2), ( 2 , 2 , 1 2, 2, 1 2,2,1), and ( 3 , 1 , 1 3, 1, 1 3,1,1).

在第一个测试用例中,三元组是 ( 1 , 1 , 1 1, 1, 1 1,1,1 )、( 1 , 1 , 2 1, 1, 2 1,1,2 )、( 1 , 2 , 1 1, 2, 1 1,2,1 ) 和 ( 2 , 1 , 1 2, 1, 1 2,1,1 )。

在第二个测试用例中,三元组是 ( 1 , 1 , 1 1, 1, 1 1,1,1 )、( 1 , 1 , 2 1, 1, 2 1,1,2 )、( 1 , 1 , 3 1, 1, 3 1,1,3 )、( 1 , 2 , 1 1, 2, 1 1,2,1 )、( 1 , 2 , 2 1, 2, 2 1,2,2 )、( 1 , 3 , 1 1, 3, 1 1,3,1 )、( 2 , 1 , 1 2, 1, 1 2,1,1 )、( 2 , 1 , 2 2, 1, 2 2,1,2 )、( 2 , 2 , 1 2, 2, 1 2,2,1 ) 和 ( 3 , 1 , 1 3, 1, 1 3,1,1 )。

题意

题目说得非常直白
给你两个数 n , x n,x n,x ,让你给出
使 a , b , c a,b,c a,b,c 满足 a b + a c + b c ≤ n ab + ac + bc \le n ab+ac+bcn a + b + c ≤ x a + b + c \le x a+b+cx
给出所有的 a , b , c a,b,c a,b,c 的数量

题解

本题的时间复杂度看似是 O ( n 3 ) O(n^3) O(n3) ,实际上是 O ( n 2 ) O(n^2) O(n2)
因为你只要确定了 a a a b b b c c c 的范围也就确定了
那我们只要根据式子,已知 n , x , a , b n,x,a,b n,x,a,b ,倒推 c c c 的表达式
然后对遍历 a , b a,b a,b 就可以了
c c c 的表达式
c ≤ n − a b a + b c \le \frac{n-ab}{a+b} ca+bnab
c ≤ x − a − b c \le x - a- b cxab
两者取最小值即可

代码

#include <bits/stdc++.h>

#define int long long
#define INF 0x3f3f3f3f
#define all(x) x.begin(),x.end()

using i64 = long long;

int t = 1;

void solve(){
    i64 ans = 0;
    int n,m;
    std::cin >> n >> m;
    for(int i = 1 ; i <= n && i <= m ; i ++) {
        for(int j = 1 ; i+j <= m && i*j <= n ; j ++) {
            ans += std::min(m-i-j,(n-i*j)/(i+j));
        }
    }
    std::cout << ans << "\n";
}

signed main(){
    std::cin >> t;
    while(t--){
        solve();
    }
    return 0;
}

转载自https://www.cnblogs.com/jiejiejiang2004/p/18331811
博主已同意,我就是博主

Codeforces Round 894 (Div. 3) 是一个Codeforces举办的比赛,是第894轮的Div. 3级别比赛。它包含了一系列题目,其中包括题目E. Kolya and Movie Theatre。 根据题目描述,E. Kolya and Movie Theatre问题要求我们给定两个字符串,通过三种操作来让字符串a等于字符串b。这三种操作分别为:交换a中相同位置的字符、交换a中对称位置的字符、交换b中对称位置的字符。我们需要先进行一次预处理,替换a中的字符,然后进行上述三种操作,最终得到a等于b的结果。我们需要计算预处理操作的次数。 根据引用的讨论,当且仅当b[i]==b[n-i-1]时,如果a[i]!=a[n-i-1],需要进行一次操作;否则不需要操作。所以我们可以遍历字符串b的前半部分,判断对应位置的字符是否与后半部分对称,并统计需要进行操作的次数。 以上就是Codeforces Round 894 (Div. 3)的简要说明和题目E. Kolya and Movie Theatre的要求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Codeforces Round #498 (Div. 3) (A+B+C+D+E+F)](https://blog.csdn.net/qq_46030630/article/details/108804114)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Codeforces Round 894 (Div. 3)A~E题解](https://blog.csdn.net/gyeolhada/article/details/132491891)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值