oj1272: Herd Sums

题目要求
The cows in farmer John’s herd are numbered and branded with consecutive integers from 1 to N (1 <= N <= 10,000,000). When the cows come to the barn for milking, they always come in sequential order from 1 to N.

Farmer John, who majored in mathematics in college and loves numbers, often looks for patterns. He has noticed that when he has exactly 15 cows in his herd, there are precisely four ways that the numbers on any set of one or more consecutive cows can add up to 15 (the same as the total number of cows). They are: 15, 7+8, 4+5+6, and 1+2+3+4+5.

When the number of cows in the herd is 10, the number of ways he can sum consecutive cows and get 10 drops to 2: namely 1+2+3+4 and 10.

Write a program that will compute the number of ways farmer John can sum the numbers on consecutive cows to equal N. Do not use precomputation to solve this problem.
Input

  • Line 1: A single integer: N
    Output
  • 1 Line: The IS A SINGLE that Integer Number of consecutive Cow Ways to N. SUM Brands CAN
    the Sample the Input
    Raw
    15
    the Sample the Output
    Raw
    . 4
    is simply a number to see what, cumulatively, such as 10 to 1 + 2 + 3 + 4 and 10, the result is 2.
    previous traversal continues from the look and accumulated on a number of the number, greater than or equal Yuan Shu n know
    the complete code
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#include<queue>
#include<math.h>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{
	int n, sum = 0, i, r = 0, k;
	cin>>n;
	k = n;
	for (i = n; i >= 1; i--)
	{
		sum += i;
		if (sum == n)
			r++;
		else if (sum > n)
			sum -= k--;
	}
	cout<<r<<endl;
	return 0;
}
Published 38 original articles · won praise 27 · views 3183

Guess you like

Origin blog.csdn.net/qq_45891413/article/details/104933337