摘要: ACL EMNLP 2017 | 故事的最后你还是说了……RocStories 数据集上的新工作 阅读全文
posted @ 2018-01-15 16:41 ABCDL 阅读(188) 评论(0) 推荐(0) 编辑
摘要: NIPS2017哪些论文值得关注 论文链接 1.首先这篇文章研究的是 event stream,什么是event stream呢 ? 假如你是一个医生,你每天会看到很多病人 ,对于每一个病人,你都有他一长串的历史记录,有他在不同时间做了什么检查,得了什么病 假如你在淘宝、亚马逊买东西的记录,在不同时 阅读全文
posted @ 2018-01-02 15:50 ABCDL 阅读(2579) 评论(1) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-08-08 11:41 ABCDL 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Description We know that if a phone number A is another phone number B’s prefix, B is not able to be called. For an example, A is 123 while B is 12345 阅读全文
posted @ 2014-04-01 09:45 ABCDL 阅读(392) 评论(0) 推荐(0) 编辑
摘要: DescriptionBothSayaandKudolikeballoons.Oneday,theyheardthatinthecentralpark,therewillbethousandsofpeopleflyballoonstopatternabigimage.Theywereveryinterestedaboutthisevent,andalsocuriousabouttheimage.Sincetherearetoomanyballoons,itisveryhardforthemtocomputeanythingtheyneed.Canyouhelpthem?Youcanassume 阅读全文
posted @ 2014-04-01 09:20 ABCDL 阅读(292) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner;public class A1000 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); System.out.println(a+b); }} 阅读全文
posted @ 2014-03-14 20:42 ABCDL 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Flip GameTime Limit:1000MSMemory Limit:65536KTotal Submissions:27005Accepted:11694DescriptionFlip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other one is black and each piece is lying either it's black 阅读全文
posted @ 2013-12-16 22:17 ABCDL 阅读(336) 评论(0) 推荐(0) 编辑
摘要: A题很水,字符串匹配,提交好几次都没通过,后来老何提醒后,发现题意理解错了,改过来之后,还是没过----------------在敲代码之前,一定要三个人统一一下思路,思路一样的话,开敲; F题是简单题,不过也提交了多次才过,这个是多组数据,题目说是一组测试数据,其实是多组测试数据----------------这个还有情可原 E题是最简单的题,跟A+B一个性质,--------------也是两次通过 J题我的错,题意理解错误--------------还是开做之前,统一思路,唉 B题,没做,字符串处理 G题,动归+搜索,NYOJ做过原题,最后半小时,都没... 阅读全文
posted @ 2013-11-19 16:27 ABCDL 阅读(176) 评论(0) 推荐(0) 编辑
摘要: A^B Problem时间限制:1000ms | 内存限制:65535KB难度:2描述Give you two numbers a and b,how to know the a^b's the last digit number.It looks so easy,but everybody is too lazy to slove this problem,so they remit to you who is wise.输入There are mutiple test cases. Each test cases consists of two numbers a and b(0 阅读全文
posted @ 2013-11-04 14:42 ABCDL 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 在C/C++中,64为整型一直是一种没有确定规范的数据类型。现今主流的编译器中,对64为整型的支持也是标准不一,形态各异。一般来说,64位整型的定义方式有long long和__int64两种(VC还支持_int64),而输出到标准输出方式有printf(“%lld”,a),printf(“%I64d”,a),和cout << a三种方式。本文讨论的是五种常用的C/C++编译器对64位整型的支持,这五种编译器分别是gcc(mingw32),g++(mingw32),gcc(linux i386),g++(linux i386),Microsoft Visual C++ 6.0。可惜 阅读全文
posted @ 2013-11-03 16:28 ABCDL 阅读(2908) 评论(0) 推荐(0) 编辑