bzoj1121: [POI2008]激光发射器SZK

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 using namespace std;
 7 
 8 int main(){
 9     int n;
10     scanf("%d",&n);
11     printf("%d
",n/2);
12     return 0;
13     /*
14     扑通扑通跪下来,写这题的目的是为五科联赛复习物理。 光路是可逆的。
15     */
16 }
View Code

题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1121

做法:扑通扑通跪下来,光路是可逆的。

poi思路题。

原文地址:https://www.cnblogs.com/OYzx/p/5562496.html