sequence 這個算 找規律的題吧

2021-06-23 01:33:30 字數 912 閱讀 2883

problem description

input

the first line contains an integer n, the number of sequence member to be calculated. (1<=n<= 2 147 483 647)

output

the output file should contain a single integer k, the value of the n-th member of the sequence.

sample input

1

6

sample output

1

23

是個水題,但是剛開始的時候完全沒有發現到後面的數是一樣的,所以糾結了很久……罰時很高的說……。所以碰到範圍特別大的題,很可能存在小tipppp。然後就是在處理數字和字元的時候會有一點小技術吧。

#include #include #include #define maxn 2300

using namespace std;

__int64 n;

char s[maxn];

int a[27];

int b[6]=;

int comp(char a,char b)

void go()

sort(s,s+x,comp);

s[x]='\0';

a[i]=0;

while(x--)

}}int main()

}return 0;

}

大d的考題 找規律

大d的考題 題意 給定乙個n n的矩陣,裡面放置1,2,3.n n這n n個數,要求是第i個數的行和第i 1個數的列必須相同。問1所在的行的和值與n n所在列的和值之差最小是多少。解法 通過dfs搜尋得到1,2,3,4對應的解分別為0,2,6,12,當n 5的時資料規模已經龐大到無法在有限時間內得到...

找規律 koishi的數學題

給你乙個公式,讓你求結果 詳細看題目鏈結裡面 如果出這種題,我就死定了 真的 看了一下,不會 那就打表。打了半天表沒發現什麼,因為 n 也在變,每次答案都不一樣,然後我換了個思路,對於每一位上的數針對 n 不同又是怎麼變得呢?於是我對於每一位又打了個表 x代表沒有數 1 0 1 2 3 4 5 6 ...

hdoj 2018 母牛的故事 找規律

是第四年初就開始 前9年每年出生的數為 1 1,1,1,2,3,4,6,9 a n 的值為 n 3到1的和 其實仔細看一下會發現 a n a n 1 a n 3 不過當時沒有仔細看 problem description 有一頭母牛,它每年年初生一頭小母牛。每頭小母牛從第四個年頭開始,每年年初也生一...