官方题解 | 找到最小值
2025-01-05 22:37:41
发布于:云南
10阅读
0回复
0点赞
推一下式子, ,所以函数的值为 的差,与 无关.
#include <iostream>
#include <cstdio>
#define int long long
using namespace std;
int a[100005];
signed main(){
cin.tie(nullptr) -> sync_with_stdio(0);
cout.tie(nullptr) -> sync_with_stdio(0);
int t;
cin >> t;
while(t--){
int n, m;
cin >> n >> m;
cout << n - m << '\n';
}
return 0;
}
对于每次询问,时间复杂度:.
这里空空如也
有帮助,赞一个