由买买提看人间百态

topics

全部话题 - 话题: starttime
1 2 下页 末页 (共2页)
y****n
发帖数: 743
1
来自主题: JobHunting版 - 问道算法题。
详细说几句:
就题目本身而言,FindTimeSpan()一次调用,那一定是O(n)。
但实际项目中,如果FindTimeSpan()被多次(比如:百万次)调用,并且非常需要迅速
返回结果(比如:某个在线服务)。那么我们可以重新构造数据结构有利于查询,以空
间换时间。
思路一:根据时长分类:
原题:假设这个List是按照startTime排好序的。
如果我们再假设,每个TimeSpan的时常都是1分钟,那么这道题是不是可以O(logn)?
好像可以了吧?
请注意,我所说的O(logn)是指以O(logn)的速度跳过不想要的结果。
如果我们再假设,每个TimeSpan的时常都是1-2分钟,我们是不是还可以O(logn)?
好像平均情况可以O(logn),最坏情况还是O(n)
那么如果我们把所有的TimeSpan分成4个list:
[0-1分钟],[1分钟-1小时],[1小时-1天],[1天-最大]
对于每个分段分别查询,这样是不是可以做到平均情况O(logn)?
前面的分段只是假设,如果能分析所有TimeSpan时长的出现概率,会得到更合理的分割
边界。那么平均速度会非常接近O(logn... 阅读全帖
h********0
发帖数: 74
2
来自主题: JobHunting版 - 一道rf的面试题
--- score = 所有出发比自己晚但是到达比自己早的racer数量之和, ---
是那些racer的个数, 不是他们的score 之和, 对不?
my idea is:
1 create a map and listA that makes the start
time ordered ,
2 travel the startTime, from big to small, and create a listB to store the
endTime in order
2.1 to the first Race whose startTime is biggest, insert his endTime in
the listB, the position is 0, so the score is 0
2.2 to every Racer, binary search his endTime in listB, the position is
his score.
code:
public boolean ... 阅读全帖
l****o
发帖数: 315
3
来自主题: JobHunting版 - G电面F电面,居然被问了同一题
如果我理解题目没错,他只需要你最后一秒一分钟和一小时的request的数。不明白为
什么要用到Array. 应该只需要三个counter就足够了。这个code有什么问题吗?(除了
不支持并发)
long startTime = new Date().getTime();
int lastSecondRequests = 0;
long lastMinuteRequests = 0;
long lastHourRequests = 0;
long whichSecond = 0;
long whichMinute = 0;
void requestHandler(HttpRequest request) {
long currentTime = new Date().getTime();

long secondSpan = Math.round((currentTime - startTime) / 1000 + 0.5);
long minuteSpan = Math.round((currentTime - startTime) / 60 * 1000... 阅读全帖
l****o
发帖数: 315
4
来自主题: JobHunting版 - G电面F电面,居然被问了同一题
如果我理解题目没错,他只需要你最后一秒一分钟和一小时的request的数。不明白为
什么要用到Array. 应该只需要三个counter就足够了。这个code有什么问题吗?(除了
不支持并发)
long startTime = new Date().getTime();
int lastSecondRequests = 0;
long lastMinuteRequests = 0;
long lastHourRequests = 0;
long whichSecond = 0;
long whichMinute = 0;
void requestHandler(HttpRequest request) {
long currentTime = new Date().getTime();

long secondSpan = Math.round((currentTime - startTime) / 1000 + 0.5);
long minuteSpan = Math.round((currentTime - startTime) / 60 * 1000... 阅读全帖
w*******s
发帖数: 96
5
来自主题: JobHunting版 - 请教亚麻一道onsite面试题
如果只是找个数, sort + dp .
struct Interval{
int startTime;
int endTime;
int w;
}
struct mycomp{
bool operator() (const Interval &l, const Interval &r)
{
return l.startTime < r.startTime;
}
}myobj;
int weightedInterval(vector &V)
{
// O(nlogn)
sort(v.begin(), v.end(), myobj);
// P[i]: the largest Index on the left who is not overlapped with V[i]
// O(n2)
vector P(V.size());
P[0] = 0;
for (int i=1; i {
... 阅读全帖
r****m
发帖数: 70
6
来自主题: JobHunting版 - 请教一个API设计的面试题
interface RequestCount{
int getRequestCount(Date startTime, Date endTime);
int getRequestCount(Date startTime, Date endTime, String url);
boolean checkRequestCount(Date startTime, Date endTime, int n);
boolean checkRequestCount(Date startTime, Date endTime, String url, int n
);
}
c*****n
发帖数: 95
7
来自主题: JobHunting版 - dropbox 面经
class logger{
vector hits(300);
long startTime;
long lastTimeCalled;
public:
logger() {
lastTimeCalled = -1;
startTime = time();
}

void zeroOut(int lapsed) {
int lastPos = lastTimeCalled % 300;
if(lapsed >= 300) {
for(int i = 0; i < hits.size(); i++) {
hits[i] = 0;
}
} else if(lastTimeCalled != -1){
for(int i = lastPos + 1; i < lastPos + lapsed; i++) {
... 阅读全帖
f*******o
发帖数: 88
8
来自主题: Programming版 - 请教一个python下面popen的问题
也许对很多大牛来说是一个比较老的问题,不过对我来说是一个新问题。
起因是想从一个video文件在任意时间点读取图像出来。 最开始是用opencv实现的,在
一些文件上测试也没有问题。后来换了一批h264格式的video文件就有问题了,很多文
件读取不出来。 在网上查了一下后,换成用moviepy来读取。 但是现在有新的问题是
就是moviepy在读取有些video文件在初始化阶段就死锁了。 跟踪进去,发现问题主要
出现在:
s = self.proc.stdout.read(nbytes) 语句时。
这个之前还有一堆初始化的代码, 主要是调用ffmpeg来执行并声称一个pipe.
def initialize(self, starttime=0):
"""Opens the file, creates the pipe. """
self.close() # if any
if starttime != 0 :
offset = min(1, starttime)
i_arg = ['... 阅读全帖
i*********7
发帖数: 348
9
来自主题: JobHunting版 - 问道算法题。
如果给你一个arraylist,里面装的都是time span,
可以假设数据结构如下。
class TimeSpan{
Long startTime;
Long endTime;
};
ArrayList
假设这个List是按照startTime排好序的。
现在我给你一个time,能否低于O(n)的方法找到所有startTime<=time<=endTime的span?
我知道可以用O(logn)的算法知道有多少个这样的span,但有没有办法低于O(n)还能找
出全部?而不仅仅是知道个数。
===========
好吧,我可能说的也有问题,我觉得O(logn)是没办法知道的,当俺错了。TAT。。
g********t
发帖数: 39
10
来自主题: JobHunting版 - 贡献Rocket Fuel 4 hour online test
贡献刚做的online test,职位是Machine Learning related。
Question 1 / 2 (LaserMaze)
You are standing in a rectangular room and are about to fire a laser toward
the east wall. Inside the room a certain number of prisms have been placed.
They will alter the direction of the laser beam if it hits them. There
are north-facing, east-facing, west-facing, and south-facing prisms. If the
laser beam strikes an east-facing prism, its course will be altered to be
East, regardless of what direction it had been goi... 阅读全帖
M****g
发帖数: 162
11
来自主题: JobHunting版 - 急求rocket fuel 3小时的online test!!!
Question 1 / 2 (LaserMaze)
You are standing in a rectangular room and are about to fire a laser toward
the east wall. Inside the room a certain number of prisms have been placed.
They will alter the direction of the laser beam if it hits them. There
are north-facing, east-facing, west-facing, and south-facing prisms. If the
laser beam strikes an east-facing prism, its course will be altered to be
East, regardless of what direction it had been going in before. If it hits
a south-facing prism... 阅读全帖
g***s
发帖数: 3811
12
来自主题: JobHunting版 - 问道amazon的面试题
public class FindSegments {
public static void main(String args[]) throws InterruptedException {
// List segs = Arrays.asList(new Integer[]{2, 3, 5, 7,
8, 10});
List segs = Arrays.asList(new Integer[]
{2,2,4,6,7,7,8,8,8,9,9,10,11,12,13,14,15,16,16,17,18,20,21,22,23,24,25,2
6,28,
29,30,31,33,34,37,38,39,40,41,45,47,47,49,54,56});
long startTime = System.currentTimeMillis();
findSegs(segs);
System.out.printf("Total running time : %d ms",... 阅读全帖
g***s
发帖数: 3811
13
来自主题: JobHunting版 - 问道amazon的面试题
public class FindSegments {
public static void main(String args[]) throws InterruptedException {
// List segs = Arrays.asList(new Integer[]{2, 3, 5, 7,
8, 10});
List segs = Arrays.asList(new Integer[]
{2,2,4,6,7,7,8,8,8,9,9,10,11,12,13,14,15,16,16,17,18,20,21,22,23,24,25,2
6,28,
29,30,31,33,34,37,38,39,40,41,45,47,47,49,54,56});
long startTime = System.currentTimeMillis();
findSegs(segs);
System.out.printf("Total running time : %d ms",... 阅读全帖
m*****k
发帖数: 731
14
来自主题: JobHunting版 - 一道java面试题
在下面这个程序中,如果sort后的totalTime 总是比不sort的totalTime 小,
你可否解释是啥原因?
public class Work {
public static void main(String args[]) {

int a[] = new int[1000000000];

//fill a

//sort a
//do not sort a

starttime=System.currentTimeMillis()
for (int i=0;i process(a[i]);
}
endtime=System.currentTimeMillis()

totalTime = endtime-starttime;
}


process(int element) ... 阅读全帖
l*****a
发帖数: 14598
15
来自主题: JobHunting版 - Amazon面试题
1) sort by endTime
2) f(n)= f(n-1)+list.get(n).value
//if list.get(n-1).endTime max(f(n-1),f(k)+list.get(n).value)
//if list.get(k).endTime btw,权值可以为负数吗?
l*****a
发帖数: 14598
16
来自主题: JobHunting版 - Amazon面试题
1) sort by endTime
2) f(n)= f(n-1)+list.get(n).value
//if list.get(n-1).endTime max(f(n-1),f(k)+list.get(n).value)
//if list.get(k).endTime btw,权值可以为负数吗?
p****n
发帖数: 4
17
来自主题: JobHunting版 - 对角线Sum 螺旋(线)
Get the Sum of 对角线 of 螺旋(线) in n X n
Starting with the number 1 and moving to the right in a counter-clockwise
direction a 5 by 5 .
The issue is that the 1 is in the middle.
Normally:
for example :螺旋(线) (3X3)
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
[leetcode]Spiral Matrix II
(2013-03-12 15:14:57)
转载▼
标签:
分类: leetcode
Given an integer n, generate a square matrix filled with elements from 1 to
n2 in spiral order.
For example,
Given n = 3,
You should return the following matrix:
[
[ 1, 2, 3 ],
[ 8,... 阅读全帖
b*********n
发帖数: 26
18
来自主题: JobHunting版 - 一道onsite题目求指导
最近onsite被问了一道题,面试官貌似是想让我写代码,但我怎么都感觉这是个设计题。
到现在还不知道这题应该怎么解。
题目是这样的:
实现两个function :recordEvent 和 getCount
recordEvent 记录不同的eventName.
getCount 需要能够拿到一段时间内不同granularity 下不同eventName 的count。
具体如下:
enum granularity {
DAY, HOUR, MINUTE
}
/**
* A new event came, will call this function
* @param eventName
* @param timestamp
*/
public void recordEvent (String eventName, long timestamp) {
}
/**
*
* @param eventName
* @param gType
* @p... 阅读全帖
c*****m
发帖数: 271
19
如果是假设最优解不会导致conflict的话,可以用贪心吧?课程按开始结束时间排序,
然后把所有教室的(available starttime, id)放在priority queue里面。对于排好
序的每一个课程,分配给queue头的教室(有最小的starttime),将该教室的开始时间
更新为该课程的endtime。错了请拍!
如果不管怎样排都有conflict就不知道怎么搞了
t********n
发帖数: 611
20
来自主题: JobHunting版 - 为啥大家都说刷题无用呢
import java.util.HashMap;
import java.io.IOException;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.File;
import java.util.*;
public class Cluster4{
public static void main(String args[]) throws FileNotFoundException,
IOException{
long startTime = System.currentTimeMillis();
String line;
String path = "/Users/***/documents/java/coursera_2/week_2/
problem_2/clustering_big.txt";
File nodeFile = ne... 阅读全帖
r*******g
发帖数: 1335
21
来自主题: JobHunting版 - 这道facebook的题怎么解
排序是对starttime排序,现在是要找endtime小于当前starttime的,对吧?
这题肯定可以做,就是怎么写比较简洁。
w****k
发帖数: 6244
22
来自主题: Stock版 - 用IB API的帮忙看看
【 以下文字转载自 Chinook 俱乐部 】
发信人: wokick (kiss), 信区: Chinook
标 题: 用IB API的帮忙看看
发信站: BBS 未名空间站 (Tue Oct 18 17:27:08 2011, 美东)
连着call两次历史数据请求,第一次是一年的日线,第二次是一天的分钟线
为啥第二次call得不到新数据,message.HistoricalData里头记录的依然是
日线数据呢?
con.reqHistoricalData(reqIdHistoricalData, futContract, startTime, '1 Y', '1
day', 'TRADES', 1, 1)
con.register(update_dayBar, message.HistoricalData)
con.reqHistoricalData(reqIdHistoricalData1, futContract, startTime, '1 D', '
1 min', 'TRADES', 1, 1)
con.register(update_oneminBar, messag... 阅读全帖
w***n
发帖数: 9040
23
。。。大家多虑了,最近确实挺忙的,不过周末就该全马比赛了,正在taper中。
2012.09.25 advance swim workout 游泳60分钟。
2012.09.27 跑步10英里,用时1小时23
Sport Running
StartTime Sep 27, 2012 6:17 PM
Distance 10.02 miles
Duration 1h:23m:13s
AvgSpeed 8:18 min/mi
Calories 928 kcal
Altitude 572 ft / 823 ft
Elevation 451 ft ↑ / 511 ft ↓
HeartRate 150 / 165
Split Time Distance AvgPace
1 8:17.1 1.00 8:17
2 8:21.2 1.00 8:21
3 8:22.8 1.00 8:23
4 8:19.6 1.00 8:20
5 8:09.1 1.00... 阅读全帖
w***n
发帖数: 9040
24
。。。大家多虑了,最近确实挺忙的,不过周末就该全马比赛了,正在taper中。
2012.09.25 advance swim workout 游泳60分钟。
2012.09.27 跑步10英里,用时1小时23
Sport Running
StartTime Sep 27, 2012 6:17 PM
Distance 10.02 miles
Duration 1h:23m:13s
AvgSpeed 8:18 min/mi
Calories 928 kcal
Altitude 572 ft / 823 ft
Elevation 451 ft ↑ / 511 ft ↓
HeartRate 150 / 165
Split Time Distance AvgPace
1 8:17.1 1.00 8:17
2 8:21.2 1.00 8:21
3 8:22.8 1.00 8:23
4 8:19.6 1.00 8:20
5 8:09.1 1.00... 阅读全帖
m*****k
发帖数: 731
25
来自主题: Java版 - 一道java面试题 (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: madmonk (madmonk), 信区: JobHunting
标 题: 一道java面试题
发信站: BBS 未名空间站 (Tue Oct 16 20:00:48 2012, 美东)
在下面这个程序中,如果sort后的totalTime 总是比不sort的totalTime 大,
你可否解释是啥原因?
public class Work {
public static void main(String args[]) {

int a[] = new int[1000000000];

//fill a

//sort a
//do not sort a

starttime=System.currentTimeMillis()
for (int i=0;i process(a[i]);
}
... 阅读全帖
w*********g
发帖数: 30882
26
“兰德公司对中国人的评价”谣言追踪
标签: 谎言 中国人 国民性
顶[0] 分享到 发表评论(1) 编辑词条
参见核心关联词条:谎言重复再重复,种族自虐妖魔化,西奴自虐典型文章存档
目录
• 点评
• 正文
• 附录一 《兰德公司对中国人的评价》
• 附录二:兰德原文《中国与全球化》
[显示全部]
点评编辑本段回目录
网友们的这个接力分析很辛苦,很用力,是群体智慧的结晶。
真相很给力。
谣言的问题在于,制造和传播太简单了,而分析和治理相对成本要高的多,即使被戳破
也能过段时间重新拿出来继续骗,这个骗不了,还可以去骗另外一个,反正总能找到自
己的土壤。
所以眼下只能指望志愿者义工们出来,找些典型谣言文来戳破,警告那些智商较低,总
是习惯性上当受骗进而义愤填膺或跟着种族自虐的小笨蛋。从这个意义上来讲,故意埋
藏破绽地雷的钓鱼文,起到的其实就是疫苗免疫针之用。
正文编辑本段回目录
第三声:为什么仇恨、鄙视中国的总是中国人——《兰德公司对中国人的评价》真相
http://bbs.anti-cnn.com/threa... 阅读全帖
d****n
发帖数: 233
27
来自主题: JobHunting版 - What's the algorithm to solve this problem?
Thanks bladesmith, your DP solution looks correct to me.
I also worked out a solution without using DP.
I paste it here and hope someone can correct me if I'm wrong, some basic
validations are skipped:
typedef struct Job {
int payAmount;
int startTime; // [0 23]
int endTime // [1, 24] endtime >= startime+1;
}
// This function returns the max amount of payment a worker
// can make from the jobs
int FindMaxTotalPayment(Job *jobs, int N)
{
//
// (Skipped) 1.
// Sort
l*****a
发帖数: 14598
28
来自主题: JobHunting版 - 阿家Prime组新鲜面经
按照时间排序,然后linear
max(n)=max( max(n-1),max(k)+count[n] ) //include the nth,or not include
k is the biggest one that endtime[k]<=starttime[n]
r**h
发帖数: 1288
29
来自主题: JobHunting版 - 请教一题,关于interval
有N个interval,每个有单独的startTime, endTime和cost
找一个subset,使得其中的interval互不相交,且cost最大
这题感觉不能用greedy呀。。难道只能枚举所有的子集吗?
r****m
发帖数: 70
30
来自主题: JobHunting版 - LGTF面经和总结
9月份的面试,连续四天面了LGTF,准备面试的半年多时间来从本版受益匪浅,现在把
面经写出来回馈本版,希望大家把好的传统延续下去。
L偏重设计,也可能与面的组是platform有关,6个面试有三个是设计,而且涉及很多细
节,比如index,distribute hash, circule counting. 有一面是manager问项目,个
人觉得选一个自己从头到尾做过的项目,然后按我下面的6点进行准备,基本就够了。
L是有题库的,建议多刷版面和glassdoor。
G偏重coding,每一面都是coding开始,而且占很大比例,如果时间多的话可能有两个
coding,也有可能接一个design问题。
T的面试最没规律,感觉基本是面试官自己决定问什么,所以这里不怎么好做总结。
F的面试是最标准化的,两个半coding + 一个design + 半个项目介绍 (项目介绍同上
面L的), F的题目重现率比较高,看版上的题目就差不多了,design问题基本在之前版
上归纳的几个类别: 设计feed,message, search,存储,都和大数据沾边。
LFT面试官大部分是同胞,大部分同胞是... 阅读全帖
r****m
发帖数: 70
31
来自主题: JobHunting版 - LGTF面经和总结
9月份的面试,连续四天面了LGTF,准备面试的半年多时间来从本版受益匪浅,现在把
面经写出来回馈本版,希望大家把好的传统延续下去。
L偏重设计,也可能与面的组是platform有关,6个面试有三个是设计,而且涉及很多细
节,比如index,distribute hash, circule counting. 有一面是manager问项目,个
人觉得选一个自己从头到尾做过的项目,然后按我下面的6点进行准备,基本就够了。
L是有题库的,建议多刷版面和glassdoor。
G偏重coding,每一面都是coding开始,而且占很大比例,如果时间多的话可能有两个
coding,也有可能接一个design问题。
T的面试最没规律,感觉基本是面试官自己决定问什么,所以这里不怎么好做总结。
F的面试是最标准化的,两个半coding + 一个design + 半个项目介绍 (项目介绍同上
面L的), F的题目重现率比较高,看版上的题目就差不多了,design问题基本在之前版
上归纳的几个类别: 设计feed,message, search,存储,都和大数据沾边。
LFT面试官大部分是同胞,大部分同胞是... 阅读全帖
h***s
发帖数: 45
32
来自主题: JobHunting版 - facebook面经
第三题能不能这样解:
Brute force:假设时间每流动一个单位,就更新一下所有meeting和room的状态。
Optimization:我们发现时间可以流动的快一些,每次流动的单位数基于当前马上就要
结束的meeting和下一个马上就开始的meeting,算法如下:
1. 按start time排序
2. Go over the sorted list.
3. keep a minimum heap based on the end time.
4. the heap size is the needed number of room at any time.
TO(nlogn): for sorting and keeping heap.
SO(n): for the heap and maybe some sorting algorithm.
// heap is based on interval.endTime
int max = 0;
for ( Interval meeting : Sorted_List )
{
while ( true )
... 阅读全帖
h***s
发帖数: 45
33
来自主题: JobHunting版 - facebook面经
第三题能不能这样解:
Brute force:假设时间每流动一个单位,就更新一下所有meeting和room的状态。
Optimization:我们发现时间可以流动的快一些,每次流动的单位数基于当前马上就要
结束的meeting和下一个马上就开始的meeting,算法如下:
1. 按start time排序
2. Go over the sorted list.
3. keep a minimum heap based on the end time.
4. the heap size is the needed number of room at any time.
TO(nlogn): for sorting and keeping heap.
SO(n): for the heap and maybe some sorting algorithm.
// heap is based on interval.endTime
int max = 0;
for ( Interval meeting : Sorted_List )
{
while ( true )
... 阅读全帖
H**********5
发帖数: 2012
34
List results = findAllPalindromicSubsequences("
abcbabcbaxsafqwfeqcwecewfweg53wf43g35t53gr3g54ghb54");
// for(String str: results){
// System.out.println(str);
//}
long endTime=System.currentTimeMillis();
System.out.println("time: "+(endTime-startTime)+"ms");
3ms
话说此题时间复杂度最优能到什么程度?
n****r
发帖数: 50
35
来自主题: Money版 - 小心你们的 dialnopin 帐户
查了一下通话记录,是balance变成0了,但是我根本没有打这些电话,而且这样的通话
记录完全不合理不可能实现,我觉得是系统出问题了。多次尝试跟客服联系解释,扔给
我一句:
The system only takes balance against the usage. There's no other ways for
the balance to go.
让人哭笑不得~
StartTime* Call From Call To Min. Charge Last Balance New Balance
3/11/2013 2:13:06 AM 330******* 352691003441 2 $0.38 $0.3846 $0.00
3/11/2013 2:12:49 AM 330******* 352691003442 3 $0.58 $0.5769 $0.00
3/11/2013 2:12:14 AM 330******* 352691003441 2 $0.38 $0.3846 $0.00
3/11/2013 2:11:37 AM 3... 阅读全帖
w***n
发帖数: 9040
36
lake front trail
http://youtu.be/jO9JTL2RnW0?hd=1
StartTime Nov 18, 2012 10:42 AM
Distance 31.14 miles
Duration 1h:46m:40s
AvgSpeed 17.5 mph
MaxSpeed 27.3 mph
Calories 1024 kcal
Altitude 694 ft / 778 ft
Elevation 70 ft ↑ / 36 ft ↓
HeartRate 145 / 165
Cadence 74 rpm
据说century ride proposal 已经递上去了,等领导拍板呢,在明年6月左右。
天凉了trail上的人也少了很多,更适合骑车了。
虽然每天都骑车上下班,不过road bike都长墙上了,周末也出去骑了一吧。
这辈子第一次骑50公里,终于到达了18迈lakefront trail南边的尽头71街。
t*****e
发帖数: 2206
c******r
发帖数: 635
w***n
发帖数: 9040
39
来自主题: Cycling版 - 【周末骑车活动】50公里
http://youtu.be/jO9JTL2RnW0?hd=1
StartTime Nov 18, 2012 10:42 AM
Distance 31.14 miles
Duration 1h:46m:40s
AvgSpeed 17.5 mph
MaxSpeed 27.3 mph
Calories 1024 kcal
Altitude 694 ft / 778 ft
Elevation 70 ft ↑ / 36 ft ↓
HeartRate 145 / 165
Cadence 74 rpm
据说century ride proposal 已经递上去了,等领导拍板呢,在明年6月左右。
天凉了trail上的人也少了很多,更适合骑车了。
虽然每天都骑车上下班,不过road bike都长墙上了,周末也出去骑了一吧。
这辈子第一次骑50公里,终于到达了18迈lakefront trail南边的尽头71街。
w***n
发帖数: 9040
40
2012.08.06 跑步3个小时,20英里,平均心率143
StartTime Aug 6, 2012 5:50 PM
Distance 20.01 miles
Duration 3h:08m:26s
AvgSpeed 9:25 min/mi
MaxSpeed 3:14 min/mi
Calories 1862 kcal
Altitude 665 ft / 885 ft
Elevation 627 ft ↑ / 539 ft ↓
HeartRate 143 / 178
Weather 84°F / 9.9 mph →
前14迈还比较轻松,平均心率低于,MAF心率10跳。下午饿了,喝了可可奶,吃了4个能
量棒,光着膀子跑,小风一吹,肚子有点着凉了,痛苦的hold住找厕所。
15,16迈有些疲劳了,提高了点心率,还能保持住速度。
17,18迈保持MAF心率150,开始掉速度了,19迈有所好转。
进入20迈,我在路边water fountain喝完水,眼见着从trail的入口,上来一个白女,
腿倒是挺fit的,上身有点微胖。
我跟... 阅读全帖
w***n
发帖数: 9040
41
2012.08.08 跑步50分钟 9公里
Sport Running
StartTime Aug 8, 2012 8:26 PM
Distance 5.60 miles
Duration 49m:34s
AvgSpeed 8:51 min/mi
MaxSpeed 3:20 min/mi
Calories 567 kcal
Altitude 790 ft / 900 ft
Elevation 164 ft ↑ / 135 ft ↓
HeartRate 149 / 175
Weather 77°F / 9.9 mph ↙
w***n
发帖数: 9040
42
2012.08.11 跑步1.5小时,10英里
Sport Running
StartTime Aug 11, 2012 1:11 PM
Distance 10.01 miles
Duration 1h:35m:50s
AvgSpeed 9:35 min/mi
MaxSpeed 6:05 min/mi
Calories 1002 kcal
Altitude 636 ft / 809 ft
Elevation 143 ft ↑ / 207 ft ↓
HeartRate 141 / 166
Weather Mostly sunny
w***n
发帖数: 9040
43
2012.08.13 跑步2个小时,半程马拉松21公里
Sport Running
StartTime Aug 13, 2012 6:59 PM
Distance 13.11 miles
Duration 2h:00m:33s
AvgSpeed 9:12 min/mi
MaxSpeed 4:36 min/mi
Calories 1217 kcal
Altitude 1073 ft / 1401 ft
Elevation 448 ft ↑ / 575 ft ↓
HeartRate 142 / 156
Weatherbeta Rain
Split,Time,Moving Time,Distance,Elevation Gain,Elevation Loss,Avg Pace,Avg
Moving Pace,Best Pace,Avg HR,Max HR,Avg Run Cadence,Max Run Cadence,Calories,
1,9:18.6,9:12,1.00,26,92,9:19,9:12,4:36,141,1... 阅读全帖
w***n
发帖数: 9040
44
2012.08.14 跑步52分钟,10公里
Sport Running
StartTime Aug 14, 2012 7:40 PM
Distance 6.27 miles
Duration 52m:11s
AvgSpeed 8:19 min/mi
MaxSpeed 5:49 min/mi
Calories 678 kcal
Altitude 674 ft / 820 ft
Elevation 291 ft ↑ / 280 ft ↓
HeartRate 156 / 176
Weather Partly sunny
w***n
发帖数: 9040
45
2012.08.15 跑步58分钟,10公里
Sport Running
StartTime Aug 15, 2012 7:18 PM
Distance 6.25 miles
Duration 58m:47s
AvgSpeed 9:24 min/mi
MaxSpeed 6:18 min/mi
Calories 635 kcal
Altitude 531 ft / 631 ft
Elevation 105 ft ↑ / 102 ft ↓
HeartRate 139 / 148
Weather Partly sunny
w***n
发帖数: 9040
46
2012.08.16 跑步57分钟,10公里
Sport Running
StartTime Aug 16, 2012 7:32 PM
Distance 6.25 miles
Duration 57m:39s
AvgSpeed 9:14 min/mi
MaxSpeed 4:21 min/mi
Calories 665 kcal
Altitude 207 ft / 417 ft
Elevation 421 ft ↑ / 288 ft ↓
HeartRate 145 / 165
Weather Cloudy
w***n
发帖数: 9040
47
2012.08.18 weekend long run跑步3小时,32公里
周末air show,trail上都是人,各种战斗机在头顶轰鸣。
Sport Running
StartTime Aug 18, 2012 10:37 AM
Distance 20.00 miles
Duration 3h:14m:42s
AvgSpeed 9:44 min/mi
MaxSpeed 5:29 min/mi
Calories 1845 kcal
Altitude 958 ft / 1334 ft
Elevation 733 ft ↑ / 769 ft ↓
Heart Rate 144 / 159
Weather Partly sunny
w***n
发帖数: 9040
48
2012.08.22 赛后恢复跑,recovery run 40分钟,4.2迈,平均心率136
Sport Running
StartTime Aug 22, 2012 7:59 PM
Distance 4.23 miles
Duration 40m:57s
Avg Speed 9:40 min/mi
Max Speed 5:16 min/mi
Calories 427 kcal
Altitude 619 ft / 784 ft
Elevation 135 ft ↑ / 188 ft ↓
HeartRate 136 / 149
Weather Mostly sunny
w***n
发帖数: 9040
49
2012.08.23 easy run 50分钟,9公里,平均心率145,气温30摄氏度
继续比赛前减量tapering轻松跑,negative split越跑越快。
最后0.5迈,进入第5迈,我正在淡定的跑9分/迈的pace,后面跟着我的mm突然加速。
最近一直在减量休息准备比赛,俺的体力不是一般的充沛呀。
我知道trail的尽头不远了,于是我直接提速到6分/迈的pace,把她甩了。
于是最后0.6迈平均pace 7:13
Sport Running
StartTime Aug 23, 2012 7:47 PM
Distance 5.63 miles
Duration 51m:37s
AvgSpeed 9:10 min/mi
MaxSpeed 5:22 min/mi
Calories 607 kcal
Altitude 530 ft / 747 ft
Elevation 306 ft ↑ / 426 ft ↓
HeartRate 145 / 176
Split:
# Time Distance Pace
1... 阅读全帖
w***n
发帖数: 9040
50
2012.08.25 轻松骑车40分钟,10迈,平均心率121
好吧我承认今天纯属打酱油凑数。
主要是为了明天比赛前确定一下车况,仔细检修了一遍公路车,把所有螺丝都紧了一遍
,安装了第二个水壶托架,链条上油,加固camera mount。
另外着重练习了,锁鞋固定在脚蹬子上,光脚直接在车上穿鞋和脱鞋的比赛技巧。
Sport Cycling, sport
StartTime Aug 25, 2012 9:33 AM
Distance 10.46 miles
Duration 41m:47s
AvgSpeed 15.0 mph
MaxSpeed 23.1 mph
Calories 300 kcal
Altitude -11 ft / 157 ft
Elevation 142 ft ↑ / 0 ft ↓
HeartRate 121 / 137
Cadence 66 rpm
Weather Sunny
1 2 下页 末页 (共2页)