题同167 ,双倍经验
题目 3196 数列分段2
2019-07-02 09:34:11
|
|
这啥啊......
题目 77 [IOI 1994] 数塔
2019-07-02 09:11:37
|
|
题目 93 [NOIP 2001]数的划分
2019-07-01 17:19:04
|
|
|
|
林荫已提供一组HACK数据
题目 3202 叠罗汉
2019-06-29 10:37:03
|
|
这和单调队列没关系呀,,,,就是单纯比大小.....
|
|
这题不开O2有点卡常。。。
|
|
回复 @ShallowDream雨梨 :
#include<cstdio> #include<iostream> using namespace std; int main(){ int a,b=0; freopen("reverse.in","r",stdin); freopen("reverse.out","w",stdout); cin>>a; while (a!=0){ b=b*10+a%10; a/=10; } cout <<b; } 短不短?AC!!
题目 623 [NOIP 2011]数字反转
2019-06-24 07:34:27
|
|
三年OI一场空,加了注释见祖宗
题目 3050 [NOIP 2018PJ]龙虎斗
2019-06-21 09:56:09
|
|
。。。
|
|
同上
题目 2929 [USACO Open18 Platinum] Out of Sorts
2019-06-20 20:59:46
|
|
为啥没人用SG函数?
题目 452 Nim游戏!
2019-06-20 19:34:15
|
|
#include<bits/stdc++.h>
using namespace std; int main(){ cout<<" 矛盾之土"<<endl; cout<<"此游戏由lcz111制作 版权所有,盗版必究???"<<endl; int C1,C2; int w1=0,w2=0; cout<<"请玩家A,B选择部落:1.工匠部落(攻击+3,防御+0.5,速度+0.5,人数+20)"<<endl; cout<<"请玩家A,B选择部落:2.巨人部落(攻击+3,血量+20,速度-0.5)"<<endl; cout<<"请玩家A,B选择部落:3.小人部落(攻击-1,人数+150,速度+1,血量-5)"<<endl; 回复 @Alfal :
题目 1670 机器人搬运
2019-06-19 19:36:05
|
|
敲着自己都迷茫了...
|
|
|
|
数据好水。。。
题目 526 [HDU 1512] 爱争吵的猴子
2019-06-18 14:47:38
|
|
HXF+HS太强了!!!
题目 686 [SCOI 2011] 棘手的操作
2019-06-18 14:20:48
|
|
叉积写错花了两天时间才看出来,我的zz身份稳了
|
|
#include <iostream>
#include <cstdio> using namespace std; int main() { freopen("unhappy.in","r",stdin);freopen("unhappy.out","w",stdout); int a[8],b[8],c[8]; for(int z=1;z<=7;z++) { cin>>a[z]>>b[z]; } for(int z=1;z<=7;z++) { c[z]=a[z]+b[z]; } for(int z=1;z<=7;z++) { if(c[z]>8) { cout<<z; break; } } }
题目 17 [NOI 2007]项链工厂
2019-06-17 19:49:37
|
|
freopen("area0.in","r",stdin);freopen("area0.out","w",stdout);
int ll=0; cin>>a>>b; for(int z=1;z<=a;z++) for(int y=1;y<=b;y++) cin>>u[z][y]; i(0,0); for(int z=1;z<=a;z++) for(int y=1;y<=b;y++) { if(u[z][y]=='0') ll++;} cout<<ll; }
题目 23 [HAOI 2005]寻找编码串
2019-06-17 19:42:54
|