那些你早出晚歸付出的刻苦努力,你不想訓練,當你覺的太累了但還是要咬牙堅持的時候,那就是在追逐夢想,不要在意終點有什麼,要享受路途的過程,或許你不能成就夢想,但一定會有更偉大的事情隨之而來。 mamba out~
2020.3.29
我太菜了 今天開始補cfdiv3
#include #include #include #include using namespace std;
int n;
int main()
} return 0;
}
#include#include#include#include#includeusing namespace std;
int main()
sum += i + 1;
} k -= sum;
i++;
for (j = 0; j#include #include #include using namespace std;
void func()
else if(s[i] == '0')a+='0',b+='0';
else
else
} } cout << a << endl;
cout << b << endl;
}int main()
return 0;
}
假dp 真搜尋
#include #include #include #include using namespace std;
int n, ans;
bool vis[25];
void dfs(int a ,int b)
} }else if(a > b)
} }}int main()
} }cout << ans << endl;
return 0;
}
\(o(n^)\)
#include #include #include using namespace std;
const int n = 100005;
int f[n], a[n], n;
int main()
ans1 = max(ans1,f[i]);
} for(int i = 1;i <= n ;i ++)
ans2 = max(ans2,f[i]);
} printf("%d\n%d",ans1,ans2);
return 0;
}
學習筆記 day43
位址列輸入 超連結form表單 ajax 請求 重定向常用方法 描述getrequesturl 獲取客戶端發出的請求時的完整 url getrequesturi 獲取請求行中的資源名稱部分 專案名稱開始 getquerystring 獲取請求行中的引數部分 getmethod 獲取客戶端請求方式 g...
python學習 Day43 多執行緒
python中提供了threading模組來對多執行緒的操作。執行緒是應用程式中工作的最小單元。多執行緒實現有兩種方式 一 將要執行的方法作為引數傳給thread的構造方法 和多程序類似 t threading,thread target action,args i,二 從thread繼承,並重寫r...
day43 等差素數列
2,3,5,7,11,13,是素數序列。類似 7,37,67,97,127,157 這樣完全由素數組成的等差數列,叫等差素數數列。上邊的數列公差為30,長度為6。2004年,格林與華人陶哲軒合作證明了 存在任意長度的素數等差數列。這是數論領域一項驚人的成果!有這一理論為基礎,請你借助手中的計算機,滿...