Gravatar
hzoi_Inkheart
积分:11
提交:5 / 36
代码输出的明明和答案输出一样嘛,有什么错,下边这些到底什么意思,

@@ -314 +313,0 @@
-700
@@ -315,0 +315 @@
+700
@@ -340 +339,0 @@
-632
@@ -341,0 +341 @@
+632
@@ -366 +365,0 @@
-881
@@ -367,0 +367 @@
+881
@@ -821 +820,0 @@
-601
@@ -822,0 +822 @@
+601
@@ -831 +830,0 @@
-666
@@ -832,0 +832 @@
+666
@@ -865 +864,0 @@
-676
@@ -866,0 +866 @@
+676
@@ -894 +893,0 @@
-415
@@ -895,0 +895 @@
+415
@@ -904 +903,0 @@
-920
@@ -905,0 +905 @@
+920

Gravatar
cstdio
积分:4748
提交:1198 / 2108
麻烦用标程公开提交一遍,以确认数据正确性~@林会东

题目 1725 音乐旋律的比对
2014-10-07 08:27:38
Gravatar
hzoi_Inkheart
积分:11
提交:5 / 36
没看懂题意,糊里糊涂枚举一下,奇葩的过了

Gravatar
cstdio
积分:4748
提交:1198 / 2108
回复 @稠翼 :
已修复,你再试试

题目 1725 音乐旋律的比对
2014-10-06 23:09:30
Gravatar
农场主
积分:1776
提交:364 / 939
program poly;
var
n,i,a:longint;
begin
assign(input,'poly.in');
reset(input);
assign(output,'poly.out');
rewrite(output);
readln(n);
for i:=1 to n+1 do
begin
read(a);
if a=0 then continue;
if (a<0)and(a<>-1) then write(a);
if a=-1 then write('-');
if (a>0)and(a<>1) then begin if i>1 then write('+');
write(a); end;
if a=1 then begin if i>1 then write('+'); if n-i+1=0 then write(a);
end;
if n-i+1>1 then begin write('x^'); write(n-i+1); end;
if n-i+1=1 then write('x');
end;
if a=-1 then write('1');!!!!!!!
close(input);
close(output);
end.回复 @BonnenuIt゛浅时 - :

Gravatar
稠翼
积分:459
提交:188 / 551
回复 @cstdio :
为什么1102会没有阅读权限的

题目 1725 音乐旋律的比对
2014-10-06 21:55:12
Gravatar
hzoi_Inkheart
积分:11
提交:5 / 36
回复 @EnAsn :
为什么电脑上运行没问题?
评测机上过不了第一个?

#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
queue<int>s;
int n;
int a;
int x;
int main()
{
freopen("queue.in","r",stdin);
freopen("queue.out","w",stdout);
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>x;
if(x==2)
{
cin>>a;
if(s.size()<=9)s.push(a);
if(s.size()==10)continue;
}
if(x==1)
{
for(int i=0;;i++)
{
s.pop();
if(s.size()==0)break;
}
}
if(x==3)s.pop();
if(x==4)
{
cout<<s.size()<<endl;
for(int i=0;i<=9;i++)
{
cout<<s.front()<<" ";
s.pop();
if(s.empty())break;
}
}
}
return 0;
}

题目 72 队列基本操作 AAAAAA
2014-10-06 18:59:30
Gravatar
Asm.Def
积分:1019
提交:240 / 495
回复 @ Sapphire~天翔 :
dp数组没有清零吧QAQ

题目 219 [NOIP 2008]传纸条
2014-10-06 16:08:54
Gravatar
cstdio
积分:4748
提交:1198 / 2108
每次尽量让注定赢的那些人去赢排名尽量靠前的人(好绕)……

Gravatar
清羽
积分:830
提交:197 / 786
回复 @cstdio :
pas的那个是标程。已经交过了。我在交一遍吧。

题目 1717 数学序列
2014-10-06 14:26:04
Gravatar
cstdio
积分:4748
提交:1198 / 2108
回复 @Chenyao2333 :
目测10000*10000这个硬下限还是过不去……
AC技术哪家强?郑州十一中找chenyao……

题目 1723 最小距离和
2014-10-06 10:32:45
Gravatar
cstdio
积分:4748
提交:1198 / 2108
回复 @清羽 :
麻烦用标程提交一遍,以确认数据正确性~

题目 1717 数学序列
2014-10-06 10:30:49
Gravatar
清羽
积分:830
提交:197 / 786
回复 @Chenyao2333 :
好吧,原来是zip。明白了,thank you

题目 1717 数学序列
2014-10-06 09:52:30
Gravatar
清羽
积分:830
提交:197 / 786
回复 @Chenyao2333 :
晕,还是没有测试点数据

题目 1717 数学序列
2014-10-06 09:51:07
Gravatar
devil
积分:1631
提交:590 / 1479
mark

题目 485 整理书本
2014-10-05 22:50:38
Gravatar
HouJikan
积分:1857
提交:596 / 1973
为什么加一个set判重就过了..会有很多重复么

题目 828 基因重组 AAAAAAAAAT
2014-10-05 22:45:05
Gravatar
Chenyao2333
积分:770
提交:122 / 365
下划线'_'打成减号'-'也没有编译错误,论起名字的艺术。。。。。

Gravatar
Chenyao2333
积分:770
提交:122 / 365
回复 @cstdio :
2003年= =,是不是还要考虑下当年的机器速度。所以你给这道题秒了?最后:学OI技术,就到实验找梦迪

题目 1723 最小距离和
2014-10-05 21:02:58
Gravatar
yjxqwed
积分:100
提交:22 / 97
第九个点出错了

题目 1149 电话号码
2014-10-05 20:54:50
Gravatar
传奇
积分:806
提交:504 / 1056