0%

AcWing 周赛

第94场周赛

题目1:装物品

装物品

标签

数学推公式

知识点

在c++中一般/是向下取整,因此当需要计算a除b向上取整的结果,就需要(a + b - 1) / b

题解

1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

using namespace std;

int main() {
int n;
cin >> n;
if(n % 5 == 0) cout << n / 5;
else cout << n / 5 + 1;
return 0;
}
1
2
3
4
5
6
7
8
9
10
#include <iostream>

using namespace std;

int main() {
int n;
cin >> n;
cout << (a + 4) / 5 << endl;
return 0;
}

题目2:最早时刻

最早时刻

标签

dijkstra

题解

1
2
3
4
5
6
7
8
#include <iostream>
#include <algorithm>

using namespace std;

int main() {
return 0;
}
正在加载今日诗词....