pond

在博客园主页添加侧边栏小插件

五迷三道 提交于 2021-02-11 18:33:43
一、在博客园主页添加小插件 第一步:查看小插件的源代码 可以是——小仓鼠/池塘鱼.... 第二步:在博客园的设置栏,将小老鼠的代码复制粘贴 首先如果想要添加 js 内容,需要先点击申请 js 的链接,申请成功后,页面会显示红框的字样,在把我们的小老鼠/池塘鱼 代码粘贴进去,点击保存,完毕! <object type= " application/x-shockwave-flash " style= " outline:none; " data= " http://cdn.abowman.com/widgets/hamster/hamster.swf? " width= " 300 " height= " 225 " ><param name= " movie " value= " http://cdn.abowman.com/widgets/hamster/hamster.swf? " ></param><param name= " AllowScriptAccess " value= " always " ></param><param name= " wmode " value= " opaque " ></param></object> Small hamsters <object type= " application/x-shockwave-flash " style=

英语6级翻译笔记

自闭症网瘾萝莉.ら 提交于 2020-11-28 13:15:03
英语6级翻译笔记 2019年 12月第一篇 (描述荷花lotus) 色彩鲜艳 feature bright color 绽放/闭合 bloom/close 花期长达二三个月 flowering period of up to two or three months 吸引来自各地的游客前往参观 attract tourists across the country to appreciate it 荷花具有多种功能 The lotus flower has multiple functions. (后面可以加that 然后阐述具体有什么功能) 既…又…还… 这种句子可以用 not only … but also … 例如 文中的翻译:既能绿化水面,又能美化庭院,还能净化水质、减少污染、改善环境。 Not only can it green water and beautify courtyards ,but it can also purify water,reduce pollution and improve environment. 迎骄阳而不惧,出淤泥而不染 not fear the strong sunshine and come out of the dirty mud unsoiled 象征 is regard as the symbol of … 纯洁 高雅

第 45 届国际大学生程序设计竞赛(ICPC)亚洲网上区域赛模拟赛 B.XTL‘s Chessboard(思维)

陌路散爱 提交于 2020-11-03 13:19:27
题目链接: https://ac.nowcoder.com/acm/contest/8688/B 题目描述 Xutianli is a perfectionist, who only owns “Good Chessboard”. A well-known definition to the Good Chessboard is that there exists two integers u,v which satisfies ux+vy=1+u+v, with the given length x and width y. Once Zjx came to XTL’s home and brought a small ball. This ball was originally used to hit XTL, because he always touches fish under the pan pond every day(touch fish means dereliction of duty). However, seeing that XTL had really worked conscientiously and enthusiastically, Zjx felt very guilty and gave the ball to XTL as a gift.

AtCoder Beginner Contest 170 F Pond Skater 广度优先遍历BFS+化二维为一维+有一点SPFA算法的味道

余生长醉 提交于 2020-08-10 19:31:53
AtCoder Beginner Contest 170 比赛人数10527 比赛开始后4分钟看到A题,在比赛开始后第5分钟看到所有题 AtCoder Beginner Contest 170 F Pond Skater 广度优先遍历BFS+化二维为一维+有一点SPFA算法的味道 总目录详见 https://blog.csdn.net/mrcrack/article/details/104454762 在线测评地址 https://atcoder.jp/contests/abc170/tasks/abc170_f 题目大意:池上滑冰,因有荷叶阻挡,若不能从出发点到达目的地,打印-1,若能抵达,输出最小行动步数,请注意,每一步,可以在同一方向上滑行[1,k]区间对应的格子数。 基本思路:如果每次只能走1格,该题就是300分的题目,因一次能走多格,曾经熟悉的vis[][]二维数组消失了。该题还有一个难点,0<=h,w<=10^6,二维数组开起来比较麻烦,需采用化二维为一维。 熟悉BFS算法的,该题代码还是容易看懂的,只在模板代码上加了一点点该题特征的代码。 AC代码如下: #include <stdio.h> #define maxn 1000010 char mp[maxn],line[maxn]; int d[maxn],r1,c1,r2,c2,H,W,K,next[][2]={{

AtCoder Beginner Contest 163

梦想的初衷 提交于 2020-08-10 03:17:21
比赛链接: https://atcoder.jp/contests/abc163/tasks A - Circle Pond 题意 由半径输出圆周长。 代码 #include <bits/stdc++.h> using namespace std; int main() { double r; cin >> r; cout << 2 * 3.14 * r; } B - Homework 题意 n 天的假期里要做 m 个任务,最终有多少天假期剩余。 代码 #include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; for ( int i = 0 ; i < m; i++ ) { int t; cin >> t; n -= t; } cout << max(- 1 , n); } C - management 题意 统计 n - 1 个 1~n 的数的个数。 代码 #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int cnt[n] = {}; for ( int i = 0 ; i < n - 1 ; i++ ) { int t; cin >> t; ++cnt[t - 1

AtCoder Beginner Contest 163

浪子不回头ぞ 提交于 2020-08-09 21:40:19
比赛链接: https://atcoder.jp/contests/abc163/tasks A - Circle Pond 题意 由半径输出圆周长。 代码 #include <bits/stdc++.h> using namespace std; int main() { double r; cin >> r; cout << 2 * 3.14 * r; } B - Homework 题意 n 天的假期里要做 m 个任务,最终有多少天假期剩余。 代码 #include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; for ( int i = 0 ; i < m; i++ ) { int t; cin >> t; n -= t; } cout << max(- 1 , n); } C - management 题意 统计 n - 1 个 1~n 的数的个数。 代码 #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int cnt[n] = {}; for ( int i = 0 ; i < n - 1 ; i++ ) { int t; cin >> t; ++cnt[t - 1

Android:如何让键盘输入按钮说“搜索”并处理其点击?

给你一囗甜甜゛ 提交于 2020-02-26 23:34:44
我无法弄清楚这一点。 有些应用程序有一个EditText(文本框),当你触摸它并调出屏幕键盘时,键盘上有一个“搜索”按钮而不是一个回车键。 我想实现这个。 如何实现“搜索”按钮并检测按“搜索”按钮? 编辑 :找到如何实现搜索按钮; 在XML中, android:imeOptions="actionSearch" 或在Java中, EditTextSample.setImeOptions(EditorInfo.IME_ACTION_SEARCH); 。 但是如何处理用户按下“搜索”按钮? 它与 android:imeActionId 有什么关系 android:imeActionId ? #1楼 在布局中设置要搜索的输入法选项。 <EditText android:imeOptions="actionSearch" android:inputType="text" /> 在java中添加编辑器动作监听器。 editText.setOnEditorActionListener(new TextView.OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME