前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >codeforce 1311 D. Three Integers

codeforce 1311 D. Three Integers

作者头像
风骨散人Chiam
发布2020-10-29 09:44:31
3390
发布2020-10-29 09:44:31
举报
文章被收录于专栏:CSDN旧文

In one move, you can add +1 or −1 to any of these integers (i.e. increase or decrease any number by one). You can perform such operation any (possibly, zero) number of times, you can even perform this operation several times with one number. Note that you cannot make non-positive numbers using such operations.

You have to perform the minimum number of such operations in order to obtain three integers A≤B≤C such that B is divisible by A and C is divisible by B.

You have to answer t independent test cases.

Input The first line of the input contains one integer t (1≤t≤100) — the number of test cases.

The next t lines describe test cases. Each test case is given on a separate line as three space-separated integers a,b and c (1≤a≤b≤c≤104).

Output For each test case, print the answer. In the first line print res — the minimum number of operations you have to perform to obtain three integers A≤B≤C such that B is divisible by A and C is divisible by B. On the second line print any suitable triple A,B and C.

Example inputCopy 8 1 2 3 123 321 456 5 10 15 15 18 21 100 100 101 1 22 29 3 19 38 6 30 46 outputCopy 1 1 1 3 102 114 228 456 4 4 8 16 6 18 18 18 1 100 100 100 7 1 22 22 2 1 19 38 8 6 24 48 纯暴力枚举(有点技巧,小剪枝)

代码语言:javascript
复制
#include <bits/stdc++.h>
using namespace std;
const long long maxn = 1e15 + 5;
int main()
{
    int t;
    cin >> t;
    while (t--)
    {
        long long a, b, c, a1, b1, c1;
        scanf("%lld %lld %lld", &a, &b, &c);
        long long cnt = maxn;
        for (long long k = 1; k <=5*c; k++)
        {
            for (long long  i = 1;  i*k<=5*c; i++)
                for (long long  j = 1;i*k* j <=5*c ; j++)
                {

                    long long temp = abs(k - a) + abs(i * k - b) + abs(j * i * k - c);
                    if (temp < cnt)
                    {
                        cnt = temp;
                        a1 = k;
                        b1 = i * k;
                        c1 = i * j * k;
                    }
                   // else
                      //  break;
                }
        }
        printf("%lld\n", cnt);
        printf("%lld %lld %lld\n", a1, b1, c1);
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/02/25 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档