Card Constructions codeforces 1345 B

B. Card Constructions
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
A card pyramid of height 1 is constructed by resting two cards against each other. For h>1, a card pyramid of height h is constructed by placing a card pyramid of height h−1 onto a base. A base consists of h pyramids of height 1, and h−1 cards on top. For example, card pyramids of heights 1, 2, and 3 look as follows:

You start with n cards and build the tallest pyramid that you can. If there are some cards remaining, you build the tallest pyramid possible with the remaining cards. You repeat this process until it is impossible to build another pyramid. In the end, how many pyramids will you have constructed?

Input
Each test consists of multiple test cases. The first line contains a single integer t (1≤t≤1000) — the number of test cases. Next t lines contain descriptions of test cases.

Each test case contains a single integer n (1≤n≤109) — the number of cards.

It is guaranteed that the sum of n over all test cases does not exceed 109.

Output
For each test case output a single integer — the number of pyramids you will have constructed in the end.

Example
inputCopy
5
3
14
15
24
1
outputCopy
1
2
1
3
0
Note
In the first test, you construct a pyramid of height 1 with 2 cards. There is 1 card remaining, which is not enough to build a pyramid.

In the second test, you build two pyramids, each of height 2, with no cards remaining.

In the third test, you build one pyramid of height 3, with no cards remaining.

In the fourth test, you build one pyramid of height 3 with 9 cards remaining. Then you build a pyramid of height 2 with 2 cards remaining. Then you build a final pyramid of height 1 with no cards remaining.

In the fifth test, one card is not enough to build any pyramids.
解法一 二分層數 層數最多不過30000.

#include <iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#define ll long long
using namespace std;
ll p(ll n)
{
    return (n*(3*n+1))/2;
}
ll binary(ll l,ll r,ll n)
{
    ll mid;
    ll ans;
    while(l<=r)
    {
        mid=(l+r)>>1;
        ll ti=p(mid);
        if(ti<=n)
        {
            ans=ti;
            l=mid+1;
        }
        else r=mid-1;
    }
    return ans;
}
int main()
{
    int t;
    scanf("%d",&t);
    ll n;
    while(t--)
    {
       scanf("%lld",&n);
       if(n<7) printf("%lld\n",n/2);
       else
       {
           ll cnt=0;
           while(1)
           {
               if(n/7+1<30000)
           {
               ll u=binary(2,n/7+1,n);
               cnt=cnt+n/u;
               n=n%u;
               if(n<7)
               {
                   cnt=cnt+n/2;
                   break;
               }
           }
           else
           {
               ll u=binary(2,30000,n);
               cnt=cnt+n/u;
               n=n%u;
               if(n<7)
               {
                   cnt=cnt+n/2;
                   break;
               }
           }
           }
           printf("%lld\n",cnt);
       }
    }
    return 0;
}

解法二 解方程 一定要用long long 不然和double 轉換啥啥的有可能會溢出,還好昨天交不上去,不然又wrong .

#include <iostream>
#include<cstdio>
#include<cmath>
#define ll long long
using namespace std;
double p(double n)
{
    double it=(-1+sqrt(1+24*n))/6;
    return floor(it);
}
ll pp(ll d)
{
    return ((d*3+1)*d)/2;
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin>>t;
    ll n;
    while(t--)
    {
        cin>>n;
        ll d=p(n);
        ll cnt=0;
        while(d!=0)
        {
            ll u=pp(d);
            cnt+=n/u;
            n=n%u;
            d=p(n);
        }
        cout<<cnt<<endl;
    }
    return 0;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章