Codeforces Round #342 (Div. 2) C. K-special Tables(想法題)

來源:互聯網
上載者:User

標籤:ati   ace   required   .com   for   table   題解   序列   namespace   

傳送門

Description

People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects.

Alis is among these collectors. Right now she wants to get one of k-special tables. In case you forget, the table n × n is called k-special if the following three conditions are satisfied:

  • every integer from 1 to n2 appears in the table exactly once;
  • in each row numbers are situated in increasing order;
  • the sum of numbers in the k-th column is maximum possible.

Your goal is to help Alice and find at least one k-special table of size n × n. Both rows and columns are numbered from 1 to n, with rows numbered from top to bottom and columns numbered from left to right.

Input

The first line of the input contains two integers n and k (1 ≤ n ≤ 500, 1 ≤ k ≤ n) — the size of the table Alice is looking for and the column that should have maximum possible sum.

Output

First print the sum of the integers in the k-th column of the required table.

Next n lines should contain the description of the table itself: first line should contains n elements of the first row, second line should contain n elements of the second row and so on.

If there are multiple suitable table, you are allowed to print any.

Sample Input
4 1

5 3
Sample Output
28
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16

 
28
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
思路

題意:

輸出一個的n*n方陣,使得其每行為上升序列,方陣中1~n2的數字每個只能出現一次,方陣的第k列的和要最大

題解:

從範例出發,5*5的方陣中,使得第三列的和最大,倒過來看,為了滿足上升序列,最後一行的倒三個數最大隻能為23,倒二行的倒三個數只能為20,依此類推。剩下的未填數的格子,填入符合要求的數字即可

 

#include<bits/stdc++.h>using namespace std;int main(){int n,k;scanf("%d%d",&n,&k);int x = 1,y = n*n - (n - k + 1) * n + 1;printf("%d\n",y*n+(n-k+1)*n*(n-1)/2);for (int i = 0;i < n;i++){for (int u = 0;u < k - 1;u++)u?printf(" %d",x++):printf("%d",x++);for (int u = k - 1;u < n;u++)u?printf(" %d",y++):printf("%d",y++);printf("\n");}return 0;}

  

Codeforces Round #342 (Div. 2) C. K-special Tables(想法題)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.