牛客演算法周周練2

2021-10-05 01:45:30 字數 756 閱讀 8253

a

題意:求乙個數的順序和逆序之和。

題解:其實就是個閹割版的高精度加法嘛。其實逆序數忽略前導零這個條件是沒有用的,因為順序數不可能有前導零,自然結果也不會有,然後注意下首位進製不取餘。

#include

using namespace std;

int a[10]

,b[10];

intmain()

for(k=j-

1;k>=

0;k--

) cout<; cout<}

c

題意:求[l,r]的平方數個數。

題解:首先打表。一種方法是二分,另一種對l、r取根號就是對應平方數的位置再判斷下l端點是否為平方數。

#include

#include

using namespace std;

typedef

long

long ll;

ll vis[

100010];

ll check

(ll x)

intmain()

}

#include

using namespace std;

typedef

long

long ll;

intmain()

return0;

}

剩下題目隨緣補~

牛客演算法周周練2

題目鏈結 include define sc x scanf lld x define pf printf define rep i,s,e for int i s i e i define dep i,e,s for int i e i s i using namespace std typede...

牛客演算法周周練3

只寫了乙個,打遊戲去了 就是個搜尋模板,直接寫就行 include include include include include include using namespace std define mid 1000000007 typedef long long ll int book 106 ...

牛客演算法周周練4

c 階乘 題解 當n!是p的倍數時,n!中含有p的所有質因子且個數大於等於p的質因子個數,如p 8 222,只要n!的階乘中含有3個2就能整除。所以分為三步,篩選p中質因子及其個數,判斷n!是否滿足,二分尋找。include include include using namespace std t...