-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# BIT-选课 | ||
|
||
在 [xk.bit.edu.cn](http://xk.bit.edu.cn/xsxkapp/sys/xsxkapp/*default/index.do) 上计算课程饱和度(志愿人数与课程容量之比)。 | ||
|
||
虽然已经0.3了,但还只能计算并显示,不能适时刷新。请手动**单击上边栏**(深蓝色导航栏)空白处来刷新。 | ||
|
||
<!-- todo: 选课开始后,补上截图 --> | ||
|
||
## 饱和度的意义 | ||
|
||
- **公选课** | ||
|
||
这类课程的志愿有优先级,而网页只显示“第一”志愿,饱和度也按第一志愿人数算。 | ||
|
||
- 饱和度 ≤ 1 ⇒ 若投第一志愿,则必中。 | ||
|
||
- 饱和度 > 1 ⇒ 若投第一志愿,则中的概率是饱和度的倒数;若投更低志愿,则必落选。 | ||
|
||
- **系统推荐课程、体育课** | ||
|
||
这类课程事实上是平行志愿。 | ||
|
||
- 饱和度 ≤ 1 ⇒ 若投志愿,则必中。 | ||
|
||
- 饱和度 > 1 ⇒ 若投志愿,则中的概率是饱和度的倒数。 | ||
|
||
另外注意,饱和度按**当前**数据计算,未必与选课结束时情况一致,特别是选课刚开始时。以上命题在情况完全一致时才成立。 | ||
|
||
## 显示颜色 | ||
|
||
| 颜色 | 饱和度 | | ||
| :------------------------------------------: | :-----------: | | ||
| <span style='color: red;'>红</span> | ≥ 10 | | ||
| <span style='color: orangered;'>橙红</span> | ≥ 3.162 ≈ √10 | | ||
| <span style='color: darkorange;'>深橙</span> | ≥ 1 | | ||
| <span style='color: black;'>黑</span> | ≥ 0.9 | |