洛谷
窗外的白月光
大多数时候我们都不知道自己何去何从。
展开
-
P1086花生采摘--洛谷
#include<iostream> #include<algorithm> #include<cmath> using namespace std; struct node{ int x; int y; int value; }; bool cmp(node a,node b){ return a.value>b.value; } int...原创 2019-01-07 16:30:11 · 158 阅读 · 0 评论 -
洛谷P1008三连击
#include <iostream> using namespace std; int main(){ int a1,a2,a3,a4,a5,a6,a7,a8,a9; for(a1=1;a1<=9;a1++){ for(a2=1;a2<=9;a2++){ if(a2!=a1) for(a3=1;a3<=9;a3++){ ...原创 2019-01-18 13:18:13 · 285 阅读 · 0 评论 -
洛谷--三连击(解法二)
#include<iostream> #include<algorithm> using namespace std; int main() { bool isr = true; int a[15]; a[0] = 0; for(int i=123;i<=329;i++){ int tem1=i*2,tem2=i*3; a[1] = i/100; ...原创 2019-01-18 14:06:51 · 411 阅读 · 0 评论 -
洛谷--级数求和
#include<iostream> #include<algorithm> using namespace std; int main() { int k; double n=1.0,sum=0; cin>>k; while(sum<=k){ sum+=(1.0/n); n++; } cout<<n-1<<...原创 2019-01-18 14:23:18 · 246 阅读 · 0 评论 -
小玉在游泳--洛谷P1423
#include<iostream> #include<algorithm> using namespace std; int main() { int ans; double mub,temp=2.0; cin>>mub; ans = 0; while(mub>0){ mub-=temp; temp = temp*(98.0/100...原创 2019-01-18 14:33:18 · 393 阅读 · 0 评论 -
P1424小鱼航程(改进)--洛谷水题
#include<iostream> #include<algorithm> using namespace std; int main() { long long dis=0,x,n; cin>>x>>n; for(long long i=1;i<=n;i++){ if(x%7==0||x%7==6){ x++; c...原创 2019-01-18 14:52:42 · 362 阅读 · 0 评论 -
洛谷---P1980计数问题
#include<iostream> #include<algorithm> using namespace std; int main() { int n,x,temp,ans=0; cin>>n>>x; for(int i=1;i<=n;i++){ temp = i; for(int j=0;j<8;j++){ ...原创 2019-01-18 15:08:56 · 186 阅读 · 0 评论