Wow! Such Doge!

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 693    Accepted Submission(s): 447

Problem Description



Chen, Adrian (November 7, 2013). “Doge Is An Ac- tually Good Internet Meme. Wow.”. Gawker. Retrieved November 22, 2013.



Doge is an Internet meme that became popular in 2013. The meme typically con- sists of a picture of a Shiba Inu dog ac- companied by multicolored text in Comic Sans MS font in the foreground. The text, representing a kind of internal monologue, is deliberately
written in broken English, and usually contains the word “wow” and the phrases “such x”, “much x”, “many x”, “very x” and “so x”.

Kabosu, the Shiba Inu featured in the original meme, was first pictured in a 2010 blog post by Atsuko Sato, a Japanese kindergarten teacher. Afterwards, varia- tions of the pictures using overlaid Comic Sans text were posted from a Tumblr blog, Shiba Confessions.
However, the use of the intentionally misspelled “doge” dates back to June 2005, when it was mentioned in an episode of Homestar Runners puppet series.

In August 2013, images of the meme were spammed on Reddit’s r/MURICA subreddit by 4chan’s random imageboard, /b/. A search of the term doge on Google Trends shows an explosion of popularity occurring in October 2013, and more so in the following month. By November
2013, the meme had become widespread on the Internet. Google later created a Doge Easter egg: when doge meme was entered into the YouTube search bar, all of the site’s text would be displayed in colorful Comic Sans, similar to the kind used by the meme.

The meme was ranked #12 on MTV’s list of “50 Things Pop Culture Had Us Giving Thanks For” in 2013. Io9 compared the internal dialog of the Shiba Inu dogs to lolcat-speak. The image most commonly associated with the meme is of a female Shiba Inu named Kabosu,
taken from a Japanese blog documenting the dog’s daily activities. The spelling of doge has several variants, leading to debate on its actual pronunciation. On December 13, Doge was named the “top meme” of 2013 by Know Your Meme.

In December 2013, the Dogecoin was introduced as a new cryptocurrency, making it the first cryptocurrency to be based on an Internet meme; the viral phenomenon, along with usage of the Comic Sans MS typeface, gave it “the Internet density of a large star” according
to Medium writer Quinn Norton.

In late December 2013, members of the U.S. Congress produced material in the meme’s style. Huffington Post commented that Doge was “killed” because of the Congress members’ usage of the meme.

By early 2014, Doge’s popularity was sustained by internet communities on social media, accompanied by the rapid growth and acceptance of Dogecoin. In April 2014, Doge experienced a second major media resurgence due to revelations of the Dogecoin community’s
intent to sponsor Josh Wise in NASCAR and place a picture of the Shiba Inu on his vehicle.



—— Doge (meme). (2014, May 18).

In Wikipedia, The Free Encyclopedia. Retrieved 02:00, May 22, 2014, from

http://en.wikipedia.org/w/index.php?title=Doge_(meme)&oldid=609040691



Now, Doge wants to know how many words “doge” are there in a given article. Would you like to help Doge solve this problem?
 
Input
An article that Doge wants to know.

The size of the article does not exceed 64KB. The article contains only ASCII characters.
 
Output
Please output the number of word “doge” (case-insensitive). Refer to the samples for more details.
 
Sample Input
adoge
cutedo
yourge
blownDoge
lovelyDooge
Wow! Such Dooooooooooooooge!!!
D0ge
dOge DOGE
dogedoge
 
Sample Output
6
2014西安邀请赛签到题。。
给一篇文章,要求doge出现的次数,不区分大写和小写。
#include <iostream>
#include <cmath>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <cstring>
#include <string>
using namespace std;
#define ll long long
char s[1000010];
int main()
{
int cnt=0;
while(gets(s))
{
int len=strlen(s);
for(int i=0;i<len;i++)
if(isalpha(s[i]))
s[i]=tolower(s[i]);
int i=0;
while(i<len)
{
if(strncmp(s+i,"doge",4)==0)
{
cnt++;
i+=4;
}
else
++i;
}
}
printf("%d\n",cnt);
return 0;
}

版权声明:本文博主原创文章,博客,未经同意不得转载。

最新文章

  1. SpringMVC与mybatis整合
  2. OC 入门
  3. C语言 百炼成钢2
  4. nodejs Q.js promise
  5. SDWebImage内存性能优化
  6. zTree的getChangeCheckedNodes()使用
  7. POJ 1456 Supermarket
  8. Lua,Lua API,配置文件
  9. C++学习之路—const用法总结
  10. 使用pscp实现Windows 和 Linux 服务器间的远程拷贝文件
  11. 89. Gray Code(中等,了解啥是 gray code)
  12. 遍历map中的内容
  13. ssh连接服务器失败解决记录
  14. 201621123002《JAVA程序设计》第二周学习总结
  15. kali渗透windowsXP过程
  16. 初识CPU卡、SAM卡/CPU卡简介、SAM卡简介 【转】
  17. Fiddler的学习之路
  18. MongoDB 之 Array Object 的特殊操作 MongoDB - 6
  19. DevExpress v18.1新版亮点——WPF篇(五)
  20. C# DateTime 月第一天和最后一天 取法

热门文章

  1. Arcgis engine 指定图层对要素进行创建、删除等操作
  2. ASI使用
  3. 博客已迁移至http://blog.csdn.net/lujinhong2/
  4. fatal error C1859的有效解决办法
  5. stm32的APB1和APB2时钟
  6. 又在折腾cygwin
  7. 得到INI文件所有Section(所有节点名称)
  8. Nginx+Tomcat+Memcached实现会话保持(MSM)
  9. js中json数据简单处理(JSON.parse()和js中嵌套html)
  10. 怎样把ul li 前面的点去掉