挺神仙的置换题 SP422 TRANSP2 - Transposing is Even More Fun 这个博客除了开始举例子别的都是对的: https://blog.csdn.net/BraketBN/article/details/50668414 首先理解题意: 就是单纯的矩阵转置,一行一行存储. (全部下标从0开始) 一个位置(i,j)在转置后会变成(j,i) 原来存储的位置是(下标从0开始):i*2^b+j 现在是:j*2^a+i 发现其实就是一个二进制数循环右移b位得到的 向要到的…
CARDS Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 1448 Accepted: 773 Description Alice and Bob have a set of N cards labelled with numbers 1 ... N (so that no two cards have the same label) and a shuffle machine. We assume that N i…