C*****z 发帖数: 2050 | 1 今年的标准相比去年更严格,TSP+增加了副驾侧small overlap为Good或Acceptable的
要求,而且车灯必须是Good;TSP则要求车灯必须是Good或Acceptable。详情请见:
http://www.iihs.org/iihs/ratings/TSP-List
我来简单说说这个榜单怎么看。首先,目前获得2018 TSP+的车少得可怜,原因之一是
评选标准更严了,但更重要的是由于增加了副驾侧的评价,IIHS或者车厂(test
verification)来不及测试大部分车。所以不要着急问什么什么车我感觉很安全怎么不
是TSP+,2018 TSPs才刚刚发布第一批,这个“评选”一直持续一年呢。其次,TSP的评
选标准只修改了车灯部分,所以今年跟去年比看点不多,大家可以去IIHS网站自行查阅。
重点说说榜单上测了副驾的那些车:
small cars有7个车型,包括斯巴鲁的Crosstrek、Impreza(轿车和旅行车)和WRX以及
现代的Elantra GT、Ioniq Hybrid和起亚的Forte、Soul。斯巴鲁和现代的副驾是G,起
亚是A。
midsize ... 阅读全帖 |
|
F********r 发帖数: 19 | 2 Qualifications
•Proficient with MATLAB, CAD, LDV measurements, Dynamic Signal
Analyzer, accelerometer, optics, and other basic mechanical and electrical
lab equipment--FEA or CFD experience is a plus, but not required.
•Proficient in data analysis and time- and frequency-domain signal
processing.
•Basic understanding of control systems.
•Familiarity with Microsoft Windows and Microsoft Office applications
such as Excel, Word, Outlook, and PowerPoint.
•Strong problem... 阅读全帖 |
|
F********r 发帖数: 19 | 3 Qualifications
•Proficient with MATLAB, CAD, LDV measurements, Dynamic Signal
Analyzer, accelerometer, optics, and other basic mechanical and electrical
lab equipment--FEA or CFD experience is a plus, but not required.
•Proficient in data analysis and time- and frequency-domain signal
processing.
•Basic understanding of control systems.
•Familiarity with Microsoft Windows and Microsoft Office applications
such as Excel, Word, Outlook, and PowerPoint.
•Strong problem... 阅读全帖 |
|
G*****h 发帖数: 320 | 4 是可以投,也可以完全或部分overlap。如果都中了,只能拿一份(if completely
overlap),或者拿部分。后者到时候需要和grant manager 商量,把 overlapped
aims 那部分的钱去掉,拿需要完成剩下的aims的钱)。这也是NIH和其他federal
agents在发钱之前,要你提供"Other Supports"的原因。 |
|
B*********g 发帖数: 18 | 5 去年申请5个地方,一个Onsite。去了才知道悲剧了。The Chair喜欢我的背景,但有一
个大Group很不原意我去。这个Group是一个英国人领导,有另一个年轻的英国人,一对
新招的印度夫妇,和三个美国人。这7个人做同一个病,我的工作在不同的一个病。三
个老美还好。 问题出在英国人。第一天才到Hotel,年轻的英国Faculty就要和我谈。
这次谈话没有事先约定。一见面就说我们的研究有很大Overlap,因为我们都做Gene
Regulation。我去前读过他的文章,知道我们的方向很不一样,而且研究Subject也不
一样。很Shocking。第二天见一对印度夫妇,也是才坐下就说有Huge Overlap, 了解
才知道他们做很少的Regulation。反复各种解释,我们的工作不一样:不同的病,不同
的Regulation机制。就是没用。和Chair一说,Chair说他也被反映过。但是Chair坚持
我们研究方向很不一样,因此才邀请我来面试。Seminar Talk 很好,因为只有15分钟
提问。可Chalk Talk出问题了。我才说第一个Aim,两个英国faculty马上各种质... 阅读全帖 |
|
s*****e 发帖数: 11 | 6 三方合同要求写死日期,我们什么时候走,承租人什么时候来。
manager又说不能overlap,说apt住more than two adults是违法的。
问题是搬进来的日期离我们走还有几天。
想写成没有overlap的,那样就会出现几天我们声称已经走了,实际还在。平时和
manager根本不会见面(房租是通过网上bill pay),更没有查房什么的。但是我们这
样一问他是否可以overlap,他有了警惕,真查房起来怎么办?
有没有人有经验的? |
|
c****l 发帖数: 1280 | 7 4.2 也许interleave不是很好的描述。这个需要判断c是否由a和b组成,同时a和b都是c
的子序列。
a = [A, B, C], b =[D, E, F]
如果c = [B, A, D,C,E, F],那么a就不是c的子序列(order变了),所以return
false
如果a和b没有overlap的话,用类似merge sort就可以搞定。如果有overlap,好像比较
麻烦。
==> evern there is overlap, we can still use merge to get it, right?
1) sort a, sort b and sort c
2) meger a and b => tempArray
3) check c is the same as tempArray.
correct me if i am wrong. thanks
是c |
|
m**q 发帖数: 189 | 8 如果已经排序的话可以binary search,只需要overlap的个数的话复杂度O(logn),
就是要处理一下细节;如果需要直到有哪些是overlap的,复杂度为O(logn+k),
k为overlap的range的个数。
如果没排序的话就只能O(n)了吧 |
|
g*********s 发帖数: 1782 | 9
interval tree works.
u always check if the latest interval has overlap with the intervals in the
tree. if not, do insert. if overlap is found, merge the overlapped one and
check the interval again. in the extreme case u only have one interval left
finally. |
|
g**e 发帖数: 6127 | 10 Here is my java version
public static void KMP(String target, String pattern) {
boolean found = false;
int[] overlap = getOverlap(pattern);
int j = 0;
for (int i=0; i
while (true) {
if (target.charAt(i) == pattern.charAt(j)) {
j++;
if (j =... 阅读全帖 |
|
l*****g 发帖数: 685 | 11 可不可以用下面的算法?借鉴了前面mercuriusl的思路
1)所有工人在original set setA里; create setB 用来存放已经找到one date的工人
2)create a set resultDates 用于存放找到的dates
3)用个sorted dictionary datePersonCounts统计出每天overlap
的人数
接下去就做以下循环:
4)从datePersonCounts中选择overlap人数最多的一天,maxDate,把它放进
resultDates,然后把dictionary中maxDate对应的entry删除
5) 在setB中找出maxDate那天available的工人,把他从setB删除;同时把工人的
available range中的所有dates, 从dictionary中减去:
datePersonCounts[date] -= 1;
6)在setA中找maxDate那天available的工人, 把他们从setA move to setB
(4)-(6)循环,直... 阅读全帖 |
|
s**x 发帖数: 7506 | 12 14.3-4
given an interval tree T and interval i, describe how all intervals in T
that overlap i can be listed in O(min(n, klogn)) time, where k is the number
of intervals in the output list. (optional: find a solution that does not
modify the tree)
14.3-7
VLSI databases commonly represent an intergrated circuit as a list of
rectangles, assume that each rectangle is rectilinearly oriented(side
parallel to the x- and y-axis), so that a representation of a rectangle
consists of its minimum and maxim... 阅读全帖 |
|
b*******h 发帖数: 53 | 13 1. 一个array当中,每个element都是一个带一种颜色的小球。有20种颜色的选择。排
序,将相同颜色的小球放在一起。 要求linear time and in-place.
in-place, 我的理解就是不能再用一个array装重新的排序的小球。
2.如何判断两个矩形overlap. 用最少的判断条件。
这道题是一道经典题吧,隐约好像以前见过。
自己给出的方案: 分别判断两边有没有overlap,就是x方向和y方向的线段有没有重叠
的部分,如果两个方向都有的话,两个矩形overlap。
不知道有没有其他方法。 |
|
O******i 发帖数: 269 | 14 最近面了一家IT大公司被拒,一共经历了N轮技术面试。自己感觉还不算太坏,但也有
三轮发挥不太完美,所以心里很没底。
结果还是被拒了。
下面是这三轮的详细经历,请大家探讨一下大公司招人的标准。
第i轮是找二叉树从根开始的所有路径,使得该路径上所有节点的值之和等于一个给定
的数。我犯了一个战略错误,因为我在准备过程中看过CarrerCup的更通用的解法,不
要求从根开始,也不要求到叶子结束,于是我直接用了那个思路,在白板上写下了类似
下面的代码
void FindPath(Node* root, int sum, int path[], int level)
{
if (root == NULL)
return;
int s = 0;
for (int i = 0; i < level; i++)
s += path[i];
int value = root->data;
if (s + value == sum)
PrintPath(path, level, value);
path[leve... 阅读全帖 |
|
s*****n 发帖数: 162 | 15 Given a m * n matrix. Initially, all cells are not occupied. Write a
function allocate(x, y) (here x and y are width and height) which returns
the left-top coordinates of a
rectangle inside the matrix and marks the rectangle as occupied. All cells
of the rectangle should not be occupied when it is allocated. You do not
have to worry about the operation free().
My idea is to use a free list to record "available rectangles". When it
needs to allocate a rectangle with size (x, y), it goes through t... 阅读全帖 |
|
w****x 发帖数: 2483 | 16 算法导论上的一道, 觉得蛮好的...
/*
Consider a sorting problem in which the numbers are not known exactly.
Instead, for each number, we know an interval on the real line to which it
belongs.
That is, we are given n closed intervals of the form [ai, bi], where ai ≤
bi.
The goal is to fuzzy-sort these intervals, i.e., produce a permutation 〈i1,
i2,..., in〉
of the intervals such that there exist , satisfying c1 ≤ c2 ≤ ··· ≤ cn.
Design an algorithm for fuzzy-sorting n intervals.
Your algorithm should have the gen... 阅读全帖 |
|
c********s 发帖数: 817 | 17 是去年十一月参加的店面。
面试开始前有个company overview presentation。 最好知道他们是那一年创立的,创
始人是谁。 可能会问到。
四轮:
1. 印度人。
- 在设计算法时,你会考虑什么因素?
- 给一个chess board,16 cells x 16 cells. 用 2 x 2 的 windows 去覆盖 (no
overlap), 需要几个windows。对于这些windows所形成的一个新的layer,再用更大
的2x2的window去覆盖 (no overlap)。如此类推,直到新的layer只有一个window。
问一共要用多少个windows。 假如windows可以overlap,但不完全cover each other,
一共又要用多少个windows?
- 写pseudocode去detect cycle in a directed graph.
2. 东亚裔。有可能是越南人
- 写pseudocode 去解决2-sum, 3-sum, and in general n-sum 问题。
3. ABC
- OOP design。 设计cl... 阅读全帖 |
|
e****e 发帖数: 418 | 18
是。
根据不同的类型,写不同的comparator,再把comparator 传进那个最初的算法(最初
的算法是针对数组元素是整数型。)
1. grep + regular expression
2. list或者open address
3. 我用了一个list, 两个list也能解决。
4. 我是用的heap, quick select更好。
:onsite1:
:2. 线性扫一遍
: followup:排序后线性扫一遍?
同意。排序后线性扫一遍还是n平方的时间复杂度。这个followup问题我没有回答出来
,至今也不知到有小于n平方的解法。
:onsite2:
:2. 二分
:3. 不清楚数据模型的角度是啥
是。data model.
:onsite4:
:2. 线性比较一下
followup:排序一下?这个不清楚
是线性比较,我的思路:有两种情况是没有overlap, 有四种情况是overlap,所以只用
看是没有overlap,再取反就行了。
followup, 预处理:按照区间数组里所有的点之间《分段》,计算每段上所重合
interval的个数。当给定区间来... 阅读全帖 |
|
w********p 发帖数: 948 | 19 求两个图形是否overlapping, overlapping 的面积。这个也是有专门的算法的。
不过这个是长方形容易点。
长方形A, 长方形B
你可以求A的每个点是否都在B的外侧,并且不crossB. 这样A 和 B 就是分开的。
如果A B 是overlapping, 求出每个相交的每个点。 计算出面积。 (计算面积,这个
也是有专门的几何公式)
? |
|
e*******8 发帖数: 94 | 20 第一题没有O(n)的解法吧:别说二维的,就是一维的(检查给定的一堆线段中
overlap的线段)也没有。一维的问题可以reduce成uniqueness的问题,
uniqueness在comparison model下至少也要o(n log n).
而且我觉得这个问题本身就有问题啊:比如最坏的情况下,可能输入的rectangle两两
相overlap,那样的话怎么都要\Omega(n^2)的时间复杂度呀。觉得最好也就能达到O(n
log n + k)了(k是实际overlap的rectangle pair的个数) |
|
c**********x 发帖数: 32 | 21 Question:
There are 1000 distinct strings, each string is composed by the chars in{‘a
','b','c','d'}. And each string.Length()==30;
here's a function aims at calculating the overlap of two different strings;
int overlapNumber(string str1, string str2){...}
overlapNumber is the length of largest prefix of str2 which is contained by
str1(Not necessary the surfix of str1)
and what I want is to calculate all the overlapNumbers between every two
strings within this string sets.
Notice: overlap(str1,s... 阅读全帖 |
|
a********9 发帖数: 129 | 22 之前稍微收集了一下
glassdoor
===================
edit distance
level traverse tree(高频)
1) Calculate the square root of a double(高频)
2) Given n intervals [si, fi], find the maximum number of overlapping
intervals.
3) Print all the paths from root to every leaf in a binary tree.
4) Print the sum of all the numbers at every vertical level in a binary tree
5) Given a set of n jobs with [start time, end time, cost] find a subset so
that no 2 jobs overlap and the cost is maximum ?
6) Given 1 trillion messages ... 阅读全帖 |
|
m*******h 发帖数: 78 | 23 直接去除overlap是不对的,e.g., a和b 是overlap的, 但是并不意味着a和c也是
overlap的,所以不能直接去除a和b。 |
|
s*********p 发帖数: 130 | 24 一道FB家面试题,不是很理解
Given n intervals [si, fi], find the maximum number of overlapping intervals
.
比如如果是 [1, 2] [2, 10], [3,4], 按照Leetcode 那道merge interval 的思路的解
法就应该结果是3, 因为 [1,2] [3,4] 都与[2,10] overlap. 这是我写的代码:
public class Solution {
public int maxIntervals(List intervals) {
if (intervals == null || intervals.size() == 0) {
return 0;
}
if (intervals.size() == 1) {
return 1;
}
int count = 1;
int... 阅读全帖 |
|
s*********p 发帖数: 130 | 25 一道FB家面试题,不是很理解
Given n intervals [si, fi], find the maximum number of overlapping intervals
.
比如如果是 [1, 2] [2, 10], [3,4], 按照Leetcode 那道merge interval 的思路的解
法就应该结果是3, 因为 [1,2] [3,4] 都与[2,10] overlap. 这是我写的代码:
public class Solution {
public int maxIntervals(List intervals) {
if (intervals == null || intervals.size() == 0) {
return 0;
}
if (intervals.size() == 1) {
return 1;
}
int count = 1;
int... 阅读全帖 |
|
F********r 发帖数: 19 | 26 Qualifications
•Proficient with MATLAB, CAD, LDV measurements, Dynamic Signal
Analyzer, accelerometer, optics, and other basic mechanical and electrical
lab equipment--FEA or CFD experience is a plus, but not required.
•Proficient in data analysis and time- and frequency-domain signal
processing.
•Basic understanding of control systems.
•Familiarity with Microsoft Windows and Microsoft Office applications
such as Excel, Word, Outlook, and PowerPoint.
•Strong problem... 阅读全帖 |
|
b*d 发帖数: 9308 | 27 Refinance是先签字,然后等三天后Funding。Overlap的interest一定是存在的,因为
即使是Funding和Payoff/Recording是同一天,也有一天的interest overlap,大部分
的情况下,interest的overlap是两天,因为是第一天funding,第二天payoff/
recording。 |
|
r******d 发帖数: 1879 | 28 When you do the no cost refinance, all the loan related cost such as
appraisal fee, credit score checking fee, underwriting fee, origination fee,
processing fee, documetation fee, notary fee, recording fee....etc are all
covered by the agent.
However, the following fee you still need to pay:
1. loan amount difference
2. property tax if due at closing
3. insurance if it is need to be renewed
4. interests for both lenders on the current month of closing
5. two days interests overlapping for both l... 阅读全帖 |
|
l*a 发帖数: 42 | 29 在版上潜水多时,学到了很多,请教大家我的case。现在是F1在读,听说OPT
extension也许会被取消,想申下EB1再毕业,有身份的话对毕业后找位置也有很大帮助。
文章7,引用110,审稿20+
自己的弱项是文章和引用偏少,组里的风格是自己做的自己发,没有挂名,文章和引用
都涨的慢,顺利的话今年会有1片新文章发出来。找几所律师评估过,只有2个愿意接,
律师的concern主要也是文章和引用少,尤其是大部分引用来自N作,一作文章新,以及
我现在还是F1在读,建议再等等或者申请NIW。
还在一片片看引用,目前还没有发现所谓的大段引用,高度评价。。(汗颜(-__-)b)
可能的亮点:
(1)被不同国家地区的研究引用过
(2)有个学者在写给政府某政策的public comment里引用了我的一片文章,这篇
public comment在政府网站上找得到。不知道这个能用吗,我感觉像是听证之类的东西
(3)我的一作文章是自己做corresponding author,能否强调。但这样又暴露了引用
高的文章非一作/非通讯
(4)小杂志的editorial board member,其实也就是干... 阅读全帖 |
|
I*******a 发帖数: 38 | 30 1. It is your turn at front . you gracefully slide into position , then
A. Accelerate to drag the line with you.
B. Maintain the average pace of the group.
C. Adjust your speed to accommodate all levels of effort within the pack.
2. Midpack riders are not expected to point out hazards or announce traffic.
(True) Only the lead and rearmost riders can see what's going on from ahead
and behind.
(False) It is every rider's responsibility to relay messages through the
pack whether from front to back ... 阅读全帖 |
|
ET 发帖数: 10701 | 31 want to change?
i used to use interlock when I started the game. I changed to overlap after
my instructor told me "99% pros are using overlap".
actually, overlap helps regarding loose grip. |
|
w**********r 发帖数: 986 | 32 能overlap的话,“口”肯定比“日”多啊,拐着弯儿的overlap就行了,
如果能重复overlap的话,“一”肯定最厉害了 |
|
d********f 发帖数: 43471 | 33 【 以下文字转载自 Faculty 讨论区 】
发信人: Bassfishing (bass), 信区: Faculty
标 题: Onsite悲剧了
发信站: BBS 未名空间站 (Mon Feb 23 09:24:53 2015, 美东)
去年申请5个地方,一个Onsite。去了才知道悲剧了。The Chair喜欢我的背景,但有一
个大Group很不原意我去。这个Group是一个英国人领导,有另一个年轻的英国人,一对
新招的印度夫妇,和三个美国人。这7个人做同一个病,我的工作在不同的一个病。三
个老美还好。 问题出在英国人。第一天才到Hotel,年轻的英国Faculty就要和我谈。
这次谈话没有事先约定。一见面就说我们的研究有很大Overlap,因为我们都做Gene
Regulation。我去前读过他的文章,知道我们的方向很不一样,而且研究Subject也不
一样。很Shocking。第二天见一对印度夫妇,也是才坐下就说有Huge Overlap, 了解
才知道他们做很少的Regulation。反复各种解释,我们的工作不一样:不同的病,不同
的Regulation机制。就是没用。... 阅读全帖 |
|
L******s 发帖数: 2349 | 34 ☆─────────────────────────────────────☆
overlap (过火地) 于 (Thu Jul 31 16:31:07 2008) 提到:
从来没听说过,偶尔当下来,第一集非常吸引人,优雅,华丽,从容。
☆─────────────────────────────────────☆
Beckett (等待戈多~作者已死) 于 (Thu Jul 31 18:31:44 2008) 提到:
我的all-time favorite No.3
B-Train的槍姬三部曲的第一部,也是個人認為最好一部。
情節不是很好懂,其解釋(尤其是最後幾話以及結局)非常具有開放性。不過就算不看
情節,把她當作音樂片也是一部上佳之作。
如果看完之後想上來討論,我很願意奉陪。
☆─────────────────────────────────────☆
octavian1222 (hard) 于 (Fri Aug 1 20:15:14 2008) 提到:
Noir的ost非常出色
☆─────────────────────────────... 阅读全帖 |
|
L******s 发帖数: 2349 | 35 ☆─────────────────────────────────────☆
kzeng (寱语·无味赛百味) 于 (Wed Sep 30 21:35:18 2009, 美东) 提到:
瞬、沙加,(以及双鱼?)用现在的话来说,就是伪娘 ... ... 最早的伪娘是不是就是
《圣斗士》里这两个了?
☆─────────────────────────────────────☆
Lizi (栗子) 于 (Thu Oct 1 11:40:16 2009, 美东) 提到:
起码脱了上半身衣服还能装伪娘的才算吧……
那三只只能算脸蛋伪娘
☆─────────────────────────────────────☆
kzeng (寱语·无味赛百味) 于 (Thu Oct 1 13:48:43 2009, 美东) 提到:
沙加有张明信片,赤裸了上身(不是特别明显的赤裸,但是是敞开胸怀那样的),是一
套黄金圣斗士里的一张。。。
btw,为什么伪娘一定要裸露上身?是为了证伪么?
☆─────────────────────────────────────☆
... 阅读全帖 |
|
k****u 发帖数: 1686 | 36 声明
1.此资料中内容是六爻占卜术的最基础的知识;
2.我能整理此资料,并不代表我的技术高,这只是个人机缘的关系。
3.资料中的内容、观点与论坛无关。
整理此资料的目的
1.为了让不懂六爻占卜的朋友对其有所了解;
2.给想学习六爻占卜的易友一个入门的基础资料;
3.为了大家相互交流与个人卦技的提高。
资料内容简述如下:
第一部分 为占卜术基础内容,此中内容为所有占卜方法都使用的基础知识;
第二部分 为六爻占卜术的基础内容,其为六爻占卜方法专用的基础知识。
第三部分 为六爻占卜中一些常见的基础问题的个人浅见。
学习方法:
学习占卜不是一天两天的事儿,我们以六爻为例,你学会了起卦的方法,这并不代
表你就会解卦了,有的人学习了十几年,几十年也没有看到门,可是有的人学了几个月
甚至几天就可以分析简单的卦了,有的人不服气,有的人不明白,其实这其中除了个人
的机缘与命运不同以外,还有个学习方法的问题。(以下内容为一家之言,仅供参考)
1、学习六爻占卜术,首先要有一个稳定的心态,因为时下派系繁多,又都有各自
的一套技法,而我们这些新人也没有办法去分析那一家对那一家错,所以我建议... 阅读全帖 |
|
D*r 发帖数: 1298 | 37 Financial Times
Apple为了卖自己的protection plan故意淡化意大利法律规定的额外的一年保修,而购
买apple protection plan后额外的那一年就overlap了,所以被意大利视为坑蒙拐骗行
为,罚款共90万欧元。
High quality global journalism requires investment. Please share this
article with others using the link below, do not cut & paste the article.
See our Ts&Cs and Copyright Policy for more detail. Email ftsales.support@ft
.com to buy additional rights. http://www.ft.com/cms/s/2/d2d9dc38-30e4-11e1-9436-00144feabdc0.html#ixzz1hsWRQdBM
Apple has been fined 00,000 by Italy... 阅读全帖 |
|
k**********g 发帖数: 989 | 38 Disclaimer: I never studied any of those. My opinion is purely based on
Wikipedia introduction to these topics.
Personally I think HCI is more related to psychology (the methodology of
measuring behavior) and graphic design, and a lot of critical thinking and
observation skills.
For HCI it is necessary to have some coding skill. That is, enough coding to
make "prototypes" that can demonstrate your concept on a computer, but not
necessary a fully-functional application.
Go ahead and look up the c... 阅读全帖 |
|
k**********g 发帖数: 989 | 39 Disclaimer: I never studied any of those. My opinion is purely based on
Wikipedia introduction to these topics.
Personally I think HCI is more related to psychology (the methodology of
measuring behavior) and graphic design, and a lot of critical thinking and
observation skills.
For HCI it is necessary to have some coding skill. That is, enough coding to
make "prototypes" that can demonstrate your concept on a computer, but not
necessary a fully-functional application.
Go ahead and look up the c... 阅读全帖 |
|
c*******n 发帖数: 27 | 40 IMHP, for overlapping PCR, 10bp overlop is too short. Previous I tried
around 30bp overlap, it's ok, but sometimes takes a while. Then I always use
~50bp overlap, it always works with one or two tries. If your PCR not
working very good, try gradient PCR to find the best conditions.
You also can do it another way. After PCR, first try TA cloning, after
sequencing, cut it out and clone into your destiny plasmid. It always works
for me if having trouble cloning it directly into the destiny plasmid. |
|
T*********r 发帖数: 11175 | 41 遇到这种说和那篇文章有overlap的文章最难搞,一般只能转投
那种referee就是存心恶心人而已
我们曾经有碰到论文比一篇和我们讨论同一问题的文章晚了两周不到(当年因为日本大
地震,我和合作者逃难回国耽搁了)
内容相关但两面都是独立工作,侧重点不同,都是几十页的文章,而且我们也
acknowledge了有这么一篇相关工作
结果被那个editor交到前一文章的作者直接被毙了,说有overlap
那个referee之前拿着我第一篇文章里一个piont展开写了好几篇
到处要credit,想把我们后续文章给封杀。
最后改投一下,一个字没改就发了。
还有一次也是,两篇文章,前后几周,他们讨论了两个信道寻找某个东西,我们建议不
同的两个信道寻找同一个东西
结果竟然被说成有overlap。。。。不准发
我改投,把这篇referee report和澄清的信发给下一杂志的editor,后来重新找人
referee就收了
从作者看,两比较恶心的referee全是我博士老板的博士后出身,非常熟的人。。。
acceptable, |
|
c*****t 发帖数: 1879 | 42 【 以下文字转载自 Programming 讨论区 】
【 原文由 coconut 所发表 】
Activity selection problem. For those people who don't remember,
it asks one to pick max # of non-overlapping segments. The optimal
strategy is to sort the segments according to where it ends and
pick accordingly. However, this is not what I am asking.
I am asking for a counter example that that Minimum Overlap greedy
(sort segments according to minimum overlap). I knew that it is
not optimal (I did it before), but apparently I forgot the solut |
|
l*****k 发帖数: 587 | 43 I can do it in R, but not sure if sas can also handle it.
I have 26 lists, now I want to generate their pairwise overlaps
I did the overlap in R, now the output is
list1 list2 both_up both_down
a c x x
a b x x
a c x x
.
.
.
b a x x
b b x x
.
.
.
list1 is actually list2, the whole paiwise comparison has 26*26 row
can I transform it to matrix format using proc transpose?
the result should have list1 as ro... 阅读全帖 |
|
p***r 发帖数: 920 | 44 做 text analysis 的时候遇到一些问题,虽然想着法子解决了,但是想不明白
1. 空白问题
一个value 看上去是 missing 的什么也没有,但是为什么 通过function missing()
却没有办法消除?一查首字母的ASCII码还都不一样
2. Proc format range overlap 的问题:
用 cntl 引入 format 的时候如果出现如下两个这样的值有时会被判定为overlap 而产
生错误
Start Label
-------------
AAA X
AAABB Y
...
Log 显示 range AAA-AAA and AAABB-AAABB 有 overlap,这个很奇怪 |
|
y***g 发帖数: 10422 | 45 我倒是觉得鸭子狗说得有道理。侧面划过去并非因为车体框架硬,而是有其他因素,正
巧导致 small overlap 碰撞完继续向前滑过去。
除了新S60是刚出来的新款之外,这一代 TL,TSX 都是 09 年出来的,Infiniti G 是
07 年出来的。不大相信它们能做得这么硬。
如果 TL,TSX,Infiniti G 真的是车体框架比 W204,B8,F30 更硬的话,那么以前的
40% overlap crash test 数据应该和现在一致。也就是说,以前的 40% overlap
crash test 中,TL,TSX,Infiniti G 的数据也应该比 W204,B8,F30 更好看才对。
但事实不是这样。 |
|
s*******e 发帖数: 1298 | 46 咱们是不是可以总结一些安全驾驶的一些tips。平时多想想,真到要用到的时候好有好
的方法处置。
1 small overlap 的测试告诉咱们撞车时要用车子的那个部位撞了。试想开车时对面车
道的车子冲过来,一般人的下意识是向右躲避,极有可能造成非常典型的small
overlap正碰,结果可想而知;所以还是full overlap正碰最好,这就要有平时想出的
意识。
2 娱乐版的夫妻双亡,也可以总结总结吧。
1) 别没事指挥别人开车;再结合前些天的一个视频:小盆友过马路,有个车子给他们
停车让路,结果小盆友被让他们的车的右侧车道的车撞飞。为安全起见,咱别做这种傻
事。
2)倒车把脑袋探出车外,我估计咱这的不会这么干。但是我想到的是:探出脑袋导致
身体挪动(想想看,这时腿会不会自然地向右移动?)再加上女生一般个矮,脚底下极
有可能定位会发生偏差,结果就是悲剧;所以在任何身体挪动之后都要重新进行脚下的
定位,而且在定位之后不要急于加油、刹车。 |
|
c*********r 发帖数: 19468 | 47 豪华车里就是德国车了,虽然之前设计的车small overlap表现并不好,但综合起来说
还是可以的
Volvo目前的sedan综合起来也是很好的,不过侧面象yling说的,比德国车稍差些,虽
然small overlap表现更好,但侧撞实际上更为重要。
Acura在small overlap里表现也不错,但传统项目比德国车差距较大,不过马上要发布
的TLX如果按MDX的趋势的话,有望改变这个状况
Infiniti及美国车没有什么强项,但综合起来勉强算及格吧
Lexus差不多是最烂了……侧面尚可,正面基本上就是买菜车一般水准…… |
|
t********i 发帖数: 7856 | 48 GLK small overlap 估计不会好,不会比W204 C-class好多少。毕竟是2009年上市的。
不过关于small overlap,我觉得,如果对small overlap很看重的话,那么除了Volvo
以外可选择的余地就非常小了。而Volvo也只有XC60比较全面,其他车型(比如S60/V60
)的侧面多少是个软肋。而XC60对于冰狐来说又太大了......
我特别注重侧撞成绩。因为我被侧撞过。 |
|
c*********r 发帖数: 19468 | 49 F30主要是small overlap不好,不知道小改时BMW会不会修正这个问题
传统的40%偏置正碰还是很强的,安全笼形变最大的测量点也只有4cm,方向柱后移5cm
Accord相应的是12cm,6cm,差距还是明显的……
测碰F30是-16.5cm,Accord是-15cm,也不如F30
基于Accord的TLX正面和侧面都有加强,正面最大10cm,方向柱没有后移,反而有1cm前
移,侧面-19cm
但small overlap反而不如Accord(Accord是G,TLX是A)
这也再次反应了small overlap成绩是很tricky的,很大程度上取决于碰撞时车是怎么
反应的
原本P的车(比如2013 Camry),经小的修改,车架形变还是一塌糊涂,但也能改成A(
比如2014 Camry)
继续针对测试进行修补,车架形变还是一塌糊涂,又能改成G(比如2015 Camry)
你真的指望实际事故里也能有这么大的提升吗? |
|