码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #710 (Div. 3) Editorial 1506A - Strange Table

时间:2021-03-29 11:53:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:problem   tor   size   center   ros   href   target   位置   ack   

 题目链接 https://codeforces.com/contest/1506/problem/A

 原题

 

 1506A - Strange Table

 技术图片

Example
input
5
1 1 1
2 2 3
3 5 11
100 100 7312
1000000 1000000 1000000000000
output
1
2
9
1174
1000000000000

 

题解

先竖列竖列地排数字, 找到x所在的位置s1;

再横行横行地排, 找到s1位置的值并输出

 技术图片 -----> 技术图片

 

(n为总行数, m为总列数, x为要找的数)

结果 = (行数-1)*m+第几列

求行: 要找到这个数的上一行, 这样用取余(x-1) % n, 比如

10, 我们要得到的是(行数-1) = 0

11, 我们要得到的是(行数-1) = 1

12, 我们要得到的是(行数-1) = 2

 求列: 用除法(x-1) / n+1, 看下上面的图应该就会了

 

 

 

代码

#include <iostream>

using namespace std;
typedef long long ll;
int main()
{
    int t;
    cin >> t;
    while(t --)
    {
        ll n ,m,x;
        scanf("%lld%lld%lld", &n, &m, &x);
       
        ll l = (x-1) / n+1;
        ll r = (x-1) % n;
        
        cout << r*m+l << endl;
    }
    return 0;
}

 

Codeforces Round #710 (Div. 3) Editorial 1506A - Strange Table

标签:problem   tor   size   center   ros   href   target   位置   ack   

原文地址:https://www.cnblogs.com/la-la-wanf/p/14582537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!