搜索+贪心——完胜
模拟退火被薄纱
题目 1197 [Nescafé 26] 小猫爬山
2024-07-31 21:37:19
|
|
退火参数仅供参考(也是交了好几次才AC)
T0=80000.0,Δ=0.998,eps=1e-10
题目 1197 [Nescafé 26] 小猫爬山
2024-07-31 21:33:56
|
|
多谢前辈%%%
题目 1567 [Ural 1520] 帝国反击战
2024-07-31 16:28:42
|
|
多谢前辈%%%
题目 2122 [CEOI1999][POJ1379]逃离陷阱
2024-07-30 20:50:06
|
|
一发AC
|
|
注意mod的是2^k不是k
|
|
注意算斜率时的数据处理,这有一组数据给的太巧了
|
|
∑
题目 1111 [福州培训2010] 最短路
2024-07-24 22:44:42
|
|
题目 3554 [模板]求素数
2024-07-23 18:27:54
|
|
题目 3927 [CSP 2023J]小苹果
2024-07-23 11:00:48
|
|
#include<bits/stdc++.h>
using namespace std; int main() { freopen("apple.in","r",stdin); freopen("apple.out","w",stdout); long long int n,date=0,ans[10000],i=0; cin>>n; while(n>0) { date++; if(n%3==1) { i++; ans[i]=date; } n=n-ceil(n*1.0/3); } cout<<date<<" "<<ans[1]; fclose(stdin);fclose(stdout); return 0; }
题目 3927 [CSP 2023J]小苹果
2024-07-23 08:29:39
|
|
题目 3927 [CSP 2023J]小苹果
2024-07-22 11:13:31
|
|
我嘞个雷
|
|
#include<bits/stdc++.h>
using namespace std; int main() { int a,b; freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); cin>>a>>b; cout<<a+b; fclose(stdin); fclose(stdout); return 0; } 这个水体有点儿水
题目 1 加法问题
2024-07-22 10:13:13
|
|
题目 3927 [CSP 2023J]小苹果
2024-07-22 10:06:08
|
|
#include<bits/stdc++.h>
using namespace std; int main() {freopen("csp2022pj_pow.in","r",stdin); freopen("csp2022pj_pow.out","w",stdout); int a,b; cin>>a>>b; if(pow(a,b)<1000000000) cout<<int(pow(a,b)); else cout<<"-1"; fclose(stdin);fclose(stdout); return 0;} |
|
666
|
|
1
题目 3375 [NOI Online 2020 1st PJ]文具订购(民间数据)
2024-07-21 11:22:12
|
|
求教程!!!
题目 3375 [NOI Online 2020 1st PJ]文具订购(民间数据)
2024-07-21 11:18:22
|
|
页面 16 [题目] 历年 NOIP/CSP 试题
2024-07-21 11:16:48
|