寒假Day53 Codeforces519B 水題

2022-02-15 23:28:38 字數 1237 閱讀 1898

題意:給出n,再給出三行,分別是n、n-1、n-2個數,輸出每一行比上一行缺失的數字。

總感覺自己的腦迴路永遠想不到最簡單的辦法

然後就是,水題也可以學到東西,況且這是我覺得水但是我沒ac的題

法一:思路:下一行少的數字一定是上一行的和與下一行的和之間的差值,沒想到。

#includeusing

namespace

std;

typedef

long

long

ll ;

const

int n=1e5+20

;int

main()

for(int i=0;i1;i++)

for(int i=0;i2;i++)

cout

cout

}return0;

}

view code

法二:思路:排序後,對每一項進行比較,第乙個不在原來位置的就是答案啊

#includeusing

namespace

std;

typedef

long

long

ll ;

const

int n=1e5+20

;int

a[n],b[n],c[n];

intmain()

}for(int i=0;i1;i++)}}

return0;

}

view code

這個**一直rt,但是我不知道錯在哪了

思路:直接標記,存在的話++;

錯誤**:

#includeusing

namespace

std;

typedef

long

long

ll ;

const

int n=1e5+20

;ll a[n],b[n],book1[n],book2[n],book3[n];

intmain()

for(int i=0; i1; i++)

for(int i=0; i)

else

book2[x]--;}}

for(int i=0; i2; i++)

for(int i=0; i1; i++)

else

book3[x]--;}}

}return0;

}

view code

day53 標籤操作

取值 文字輸入框 username val input,type radio單選框 type radio checked val 首先找到被選中的標籤,再進行取值 input,type checkbox多選框 通過val方法不能直接獲取多選的值,只能拿到乙個,想拿到多個項的值,需要迴圈取值 var ...

寒假學習day 1

今天學習了python常用的字串操作方法。1.字串的下標 字串的每個組成字元都有對應的下標,如str abc 那麼str 0 a,str 1 b 2.字串的切片 語法 序列 開始位置下標,結束位置下標,步長 注意 1 不包含結束位置下標對應的數,正負整數均可。2 步長為選取間隔正負整數均可,預設步長...

寒假訓練 day2

定義 窮竭搜尋是將所有的可能性羅列出來,在其中尋找答案的方法。主要介紹深度優先搜尋和廣度優先搜尋。廣度優先搜尋 bfs 也是搜尋的手段之一。它與深度優先搜尋類似,從某個狀態出發探索所有可以到達的狀態。不同之處在於搜尋的順序,廣度優先搜尋總是先搜尋距離初始狀態近的狀態。總結 廣度優先搜尋與深度優先搜尋...