浙大PAT甲級 1022

2021-08-19 18:23:48 字數 896 閱讀 6019

關鍵點:

(1)cin輸入並沒有將換行符輸入所以後面如果緊接著getline(cin,str)需先輸入完換行符

(2)id列印注意前面補零(%07d)(否則後面兩個測試點過不去)

#include #include #include #include #include using namespace std;

struct book;

int n, m;

vectorlib;

vectorcomm;

bool cmp(book b1,book b2)

sort(lib.begin(),lib.end(),cmp);

int flag=0;

for(i=0;i}

if(flag==0)

cout<<"not found"

case '2':

cout

if(flag==0)

cout<<"not found"

case '3':

cout

}if(flag==0)

cout<<"not found"

case '4':

cout

if(flag==0)

cout<<"not found"

case '5':

cout

for(int j=0;j}

if(flag==0)

cout<<"not found"

}flag=0;

}return 0;

}

浙大pat甲級 1024

可用3個vector來進行處理,先將輸入的數字都壓入到第1第2個vector中,從i 0到k迴圈判斷是否為對稱數,如果不是對稱數則將其與倒轉數相加,並將得到的每一位數加入到第三個vector的頭部,並將新的第三個vector重新賦值給第一第二,直到該數為對稱數或i k結束迴圈。ac include ...

浙大PAT甲級 1039

一開始想到用map 但是會超時。由於題目中的名字由三個字母和乙個數字組成,因此有26 26 26 10種,因此可以用hash來做。使用setmm max max 26 26 26 10 5 同時輸入名字時也應改為char s 5 scanf來輸入。ac include include include...

浙大PAT甲級 1045

這個題考查dp,最長非遞減序列。dp i 表示以a i 為結尾的最長非遞減序列。初始化dp為1,狀態轉移方程為dp i max 1,dp j 1 j特別注意 沒有出現在最喜愛的序列中的數,其優先順序為0,在考慮最長非遞減序列時,應直接忽略0。ac include include include in...