POJ 2140 Herd Sums 公式推導
阿新 • • 發佈:2017-05-24
cpp true typedef 因數 固定 ostream highlight ring sum
題意:給出n<=1e7 求有多少個連續數之和等於k
x+x+1+....x+k=n
(k+1)k/2+(k+1)x=n
(k+1)k+(k+1)2x=2*n
(k+1)*(2x+k)=2*n 2*n為偶 k+1,2x+k都為2*n因子 &&一奇一偶
得到:2*n有多少個奇因子(或者偶因子)就有多少對解 (k,n固定可以得到首項x 得出一解)
#include <iostream> #include <cstdio> #include <cmath> #include <cstring> #include <algorithm> using namespace std; typedef long long ll; const int N=3e5+20; // string s; ll n; bool check(ll x,ll y) { return (x+y)*(y-x+1)>=2*n; } int main() { while(cin>>n) { int cnt=0; n=n*2; for(int i=1;i*i<=n;i++) { int x=n/i; if(n%i==0) { if(x%2||i%2)//2*n 一個因數為奇 另外一個肯定為偶數 cnt++; } } cout<<cnt<<endl; } return 0; }
POJ 2140 Herd Sums 公式推導