摘要:
/*两层循环 maxn minn记录最大值和最小值 */ #include #include int const MAXN=1005; using namespace std; int n,m,maxn,minn; int t1[MAXN],t2[MAXN]; bool f1[MAXN],f2[MAXN]; int main() { freopen("neighbor.in",... 阅读全文
摘要:
最大速度 (maxv.pas/c/cpp) 【问题描述】 Ron的老爸的Flying Car出了些问题,现在必须要在地上跑到很大的速度才能飞起来,但是Flying Car飞起来的那一刻不能被麻瓜看到。为了确保安全飞起来,需要知道车到可以飞起来的地方时所能达到的最大速度。他的Flying Car一开始 阅读全文
摘要:
逃亡的准备 (hallows.pas/c/cpp) 【问题描述】 在《Harry Potter and the Deathly Hallows》中,Harry Potter他们一起逃亡,现在有许多的东西要放到赫敏的包里面,但是包的大小有限,所以我们只能够在里面放入非常重要的物品,现在给出该种物品的数 阅读全文
摘要:
3 阅读全文
摘要:
/*2bc*cosA=b^2+c^2-a^2 模拟计算 50分*/ #include #include #include using namespace std; const double t=3.1415926535898; int n; double a,b,c,x,y,z,x2,y2,z2,s,k,m,w,p; int main () { freopen ("standi... 阅读全文