那些你早出晚歸付出的刻苦努力,你不想訓練,當你覺的太累了但還是要咬牙堅持的時候,那就是在追逐夢想,不要在意終點有什麼,要享受路途的過程,或許你不能成就夢想,但一定會有更偉大的事情隨之而來。 mamba out~
2020.3.7-3.8
#include #include #include using namespace std;
int cmp(string a,string b)
int main()
#include #include #include #include #include #include #include using namespace std;
const double pa = 3.14;
string tostring(double a)
int main()
遞迴
#include #include using namespace std;
int n;
int getnumber(int n)
else
}int main()
#include#include#includeusing namespace std;
int a[10010],x,num,b[10]=,ans;
bool t[10010];
int main()
t[0] = 1;
for(int i = 1;i <= num ;i ++)
} for(int i = 1;i <= 1010 ;i ++)
printf("total=%d",ans);
return 0;
}
#include #include #include #include using namespace std;
const int n = 1500;
int t , m; // t 是時間限制, m 是草藥數量
int dp[n][n];
int w[n] , v[n]; // 採這一株草藥所花得時間得和其價值
int main()
/*如果我們想要讓最終能得到得揹包價值容量最大
*/ for(int i = 1;i <= m;i ++)
else
} } cout << dp[m][t] ;
return 0;
}
#include #include #include using namespace std;
const int n = 1500;
int cost[n], v[n] , n , t;
int f[n][n];
// 對於每乙個狀態我們都有選擇或者不選兩種情況
// 引數 1. 當前選擇了幾個物品 2. 剩餘時間 3. 當前價值
int ans = 0;
int dfs(int now,int time)
int dfs1 , dfs2 = -9999;
dfs1 = dfs(now + 1,time); // 不選
if(time >= cost[now])
return f[now][time] = max(dfs1,dfs2);
} int main()
fill(f[0],f[0] + n * n , -1);
cout << dfs(1,t);
return 0;
}
day23 系統服務
今日內容 1.系統服務 1.開機啟動流程 2.centos6與centos7區別 3.系統的執行級別 1.centos6 臨時性的操作 root oldboy runlevel 檢視級別 n 3 n 表示上一次是什麼級別 3 當前系統正在執行的級別 root oldboy init 3 切換到3級別...
實習日記 Day23
今天是週三,一周之中的 駝峰日 駝峰日通常是一周中最難過的日子,但也是最充滿希望的時日,過去了就是週末了。今天的task數量之多,達到了我入職以來的頂峰呢,刺激 犯了低階的錯誤呢 快下班時,leader突然在skype找我了,甩過來乙個鏈結,問我用 賬號能不能登陸。我一看,不正是我上週已經交付的任務...
前端學習Day23
一 查詢 查詢 由裝置型別 監測裝置特性表示式構成。語法 media 裝置型別 all screen and 條件表示式 注 1 and兩側必須有空格 2 not放在裝置型別的前面 反向選擇 排除某個範圍 3 查詢 做樣式微小調整,例如 浮動,顯示隱藏,文字大小,寬高 二 移動端準備工作 1 met...