Redian新闻
>
TSC EB1A 140 被1172 RFE了:( 具体信息更新
avatar
TSC EB1A 140 被1172 RFE了:( 具体信息更新# Immigration - 落地生根
s*1
1
Leetcode 最新题,我是想用bitset方法做的,但似乎开辟不了那么大的空间,我打算
正负都用一个byte array, 下面是我的打算
byte[] bs = new byte[1<<28];

int[] bs = new int[1<<26];
用这个方法出现了Runtime Error, 想请问是不是这个用法?
还是达到了memory limit了?
另外,此题用神马方法搞定啊?
拜谢各位大牛~
avatar
p*y
2
是撞上1172了,所以前途未卜。具体如下:
1.review 通过
2.Contribution: while these references describe your achievements as
novel and useful and state that you have contributed to your field of
endeavor, they do not indicate how your work constituted a contribution
of major significance to his field(rather than an individual lab or
institution).
3.Authorship: You claim that you articles or publications have been
cited 210 times but the evidence is not sufficient to establish the
number of independent citations that cited your articles.
很没逻辑的是,下面接着是这段话:
as to your authorship of 30 scholarly articles published in major
publications and conference proceedings indicates that you meet the
plain language of the criterion pursuant to 8 C.F.R. section 204.5(h)(3)
(vi).(这里好像说通过)
As such, the evidence submitted doesn't meet this criterion. (这里说不够)
不过authorship应该比较好回复,做个他引的数据应该可以。但contribution不知道怎么才能说
服1172啊。好像要有工作被真正做成产品被使用才算major significance,可惜没有:(
求建议对付1172。多谢!
×××××××××××××××××××××××××××××××××××××××
3月21日 efile;23日 delieried; 今天收到RFE email了,现在还不知道到底RFE的什
么,但是估计凶多吉少,很紧张!:( 如果contribution没有过,是不是回复RFE就比较
难啊?背景以前发过(见下面链接)。本来准备批了发包子的,没想到RFE了。等拿到
具体信息再和大家分享,寻求建议,律师的招法估计不如版上的多。先谢谢啦!
http://www.mitbbs.com/article_t0/Immigration/32311527.html
avatar
g*1
4
bless
avatar
s*l
6
bless, 希望没有什么大问题,排队等具体信息分享
avatar
s*1
7
拜谢大牛~
只是看不懂~ 我再看看~
avatar
I*1
8
bless

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
s*1
9
刚才看懂~此法精辟~
膜拜二爷~
同时对于楼上longway兄弟也膜拜一下,能几秒种看懂也是神人~
avatar
b*e
10
现在讨论还太早,最近报出来的RFE都是很简单的东西。

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
p*p
11
刚要跑large,网站挂了……
class Solution {
public:
int longestConsecutive(vector &num) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
unordered_set set;
int maxSize = 0;

for (int value : num) {
set.insert(value);
}

for (int value : num) {
maxSize = max(maxSize, getConsecutiveLength(&set, value));
}
return maxSize;
}

int getConsecutiveLength(unordered_set *set, int value) {
if (set->find(value) == set->end()) return 0;
set->erase(value);
return 1 + getConsecutiveLength(set, value - 1) +
getConsecutiveLength(set, value + 1);
}
};
avatar
p*a
12
take it easy
get well prepared!
and blessings~
avatar
c*t
13
目测 似乎有个错 {-2147483648,2147483647} 啥结果?

【在 p*****p 的大作中提到】
: 刚要跑large,网站挂了……
: class Solution {
: public:
: int longestConsecutive(vector &num) {
: // Start typing your C/C++ solution below
: // DO NOT write int main() function
: unordered_set set;
: int maxSize = 0;
:
: for (int value : num) {

avatar
p*a
14
bless, just found out that your case is pretty strong!
avatar
c*t
15
我首先想到这个方法,但脑子一短路,寻思不是O(n),就改bitMap了,于是就和楼主一
样杯具了,原因当然就是 Integer positive-negative = negative, 初始化size为负
数啊。

【在 p*****2 的大作中提到】
: http://blog.sina.com.cn/s/blog_b9285de20101iqar.html
avatar
L*e
16
bless.............
背景不错了
avatar
f*e
18
背景很强啊, 不知道为什么RFE
avatar
h*6
19
这题是不是很像0、1矩阵中,求由1组成的最大联通图形的面积。
avatar
p*y
20
大蜜蜂,救人呀。。。
律师说expert testimony够了,除了4封独立,还提交了其他引用我工作的文章中的一
些highlights,不过这是在PL中提到的,我觉得1172不看PL的推论越来越受支持。

【在 b*******e 的大作中提到】
: 现在讨论还太早,最近报出来的RFE都是很简单的东西。
avatar
z*8
21

下面的code需要美化,不过应该是O(n):
void FakeRadixSort(vector &num, vector &temp, int N)
{
vector count;
count.resize(2*N);
int i=0;
for (i=0; i<2*N; i++)
{
count[i] = 0;
}
int size = num.size();

for (i=0; i {
int index = num[i] % N;
index += N;
++ count[index];
}
for (i=1; i<2*N; i++)
{
count[i] += count[i-1];
}
for (i=size-1; i>=0; i--)
{
int index = num[i] % N;
index += N;
temp[count[index]-1] = num[i];
count[index] -= 1;
}
}
int longestConsecutive(vector &num)
{
// Start typing your C/C++ solution below
// DO NOT write int main() function
int size = num.size();
if (size == 0)
{
return 0;
}
if (size == 1)
{
return 1;
}
int N = 1;
while ( N < size)
{
N *= 10;
}
vector temp;
temp.resize(size);
FakeRadixSort(num, temp, N);
int start = 0;
int end = start;
int max = 1;
int len = 1;
while (end < size-1 && start < size)
{
int diff = temp[end+1] - temp[end];
if (diff == 0 || diff == 1)
{
++ end;
if (diff == 1)
{
len ++;
}
if (len > max)
{
max = len;
}
}
else
{
start = end + 1;
end = start;
len = 1;
}
};
return max;
}

【在 c********t 的大作中提到】
: 感觉你和ls有一样的错 测测{-2147483648,2147483647}
: 如果你过了大case, 也许是leetcode没这样的case, 也许是我错了

avatar
p*e
22
bless, 1172还是很活跃啊


【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
c*t
23
不太像,如果sorted数组,才像

【在 h**6 的大作中提到】
: 这题是不是很像0、1矩阵中,求由1组成的最大联通图形的面积。
avatar
p*y
24
我给律师说要不要晚点再pp,他说这个和RFE没什么关系。不顺着他好了,结果真的撞
上1172了。唉。。。

【在 p*******e 的大作中提到】
: bless, 1172还是很活跃啊
:

avatar
p*p
25
在理,改一下
不过没有这个case
if (value == INT_MAX) {
return 1 + getConsecutiveLength(set, value - 1);
}
else if (value == INT_MIN) {
return 1 + getConsecutiveLength(set, value + 1);
}
return 1 + getConsecutiveLength(set, value - 1) +
getConsecutiveLength(set, value + 1);

【在 c********t 的大作中提到】
: 目测 似乎有个错 {-2147483648,2147483647} 啥结果?
avatar
e*r
26
这个看来是1172的模板。
其实是很强的case了。我的理解是,只承认了一项。
authorship那个还要接着论证。
以前有个从1172手下rfe过得例子,lz好好研究一下。big bless

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
A*n
27
big big bless!!!!

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
f*7
28
bless
avatar
p*r
29
bless
avatar
L*e
30
这个1172太讨厌了
avatar
m*n
31
1172真是阴魂不散,折磨了多少XDJM啊。
振作精神,好好考古战胜1172的帖子,再好好挖掘你那200多个citation,准备几封有
理有据的推荐信。估计1172不喜欢空话套话大话,只喜欢实话和实例。
avatar
G*h
32
1172是不是专门负责直接PP的案子? 板上好像有几个直接pp碰到1172的? 有人可以确认
一下吗?

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
m*n
33
记得枪兄的分析是这样的,所以才提出了追加PP避开1172的理论,在研究绿卡申请的学
术界可获诺贝尔奖。:-)

【在 G*****h 的大作中提到】
: 1172是不是专门负责直接PP的案子? 板上好像有几个直接pp碰到1172的? 有人可以确认
: 一下吗?

avatar
p*y
34
多谢。心里真是没底。

【在 e******r 的大作中提到】
: 这个看来是1172的模板。
: 其实是很强的case了。我的理解是,只承认了一项。
: authorship那个还要接着论证。
: 以前有个从1172手下rfe过得例子,lz好好研究一下。big bless

avatar
x*g
35
bless!
avatar
K*N
36
bless
avatar
j*i
37
bless and also for me
avatar
w*3
38
bless

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
l*g
39
据说是PP部门的头头
avatar
J*t
40
cft
big bless
avatar
n*z
41
我觉得楼主的背景挺强的.
只能祝福楼主了!
avatar
t*l
42
关于contribution,一是可以争取联系曾经引用你的paper的人给你写推荐信,表达你
的成果对他的研究的重要性;二是把你的研究成果往具体的产品上联系,即使你的成果
还没有应用,但是如果应用,会比现有的好在哪里。

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
s*l
43
我觉得可能楼主写了很多自己做的东西有用,但是没有重点说影响,多找几个引用你文
章的推荐人,夸你的东西,还有国际的影响力,没有联系的人也因为你的工作知道你,
不一定非要有产品,potential的东西可以让推荐人吹,不能自己吹,貌似推荐信和引
用比较少,所以总体感觉影响不,个人看法,希望能抛砖引玉。
avatar
l*e
44
bless
avatar
p*y
45
多谢tall和solgel的建议。
其实好多东西都已经提交了,写推荐信的推荐人都是引用我工作的,都说明了我的工作
对他们研究的影响。而且PL里还列举了一些其他人引用我工作的一些highlights,还提
交了很多地方的研究者寄来的email咨询有关我的工作,但这些1172都没有看。很多
objective evidence都没有看,回复的时候只能再强调一下了。就像大蜜蜂说的,1172
好像只看reference letter。我觉得对于1172来说,推荐人吹不管用的,他/她就是要
看客观证据,已经有了影响,potential的不算。

【在 s****l 的大作中提到】
: 我觉得可能楼主写了很多自己做的东西有用,但是没有重点说影响,多找几个引用你文
: 章的推荐人,夸你的东西,还有国际的影响力,没有联系的人也因为你的工作知道你,
: 不一定非要有产品,potential的东西可以让推荐人吹,不能自己吹,貌似推荐信和引
: 用比较少,所以总体感觉影响不,个人看法,希望能抛砖引玉。

avatar
f*e
46
看了你之前的贴子, 背景挺强的.
感觉问题还是在推荐信上. 1172明确说了, 推荐信证明了你的研究对推荐人很有用(an
individual lab or institution), 但是没有证明对你领域的贡献(to his field)
你的推荐人在谈贡献的时候是不是太FOCUS到某个具体例子, 以至显得你的贡献很狭隘?
2.Contribution: while these references describe your achievements as
novel and useful and state that you have contributed to your field of
endeavor, they do not indicate how your work constituted a contribution
of major significance to his field(rather than an individual lab or
institution).

1172

【在 p*****y 的大作中提到】
: 多谢tall和solgel的建议。
: 其实好多东西都已经提交了,写推荐信的推荐人都是引用我工作的,都说明了我的工作
: 对他们研究的影响。而且PL里还列举了一些其他人引用我工作的一些highlights,还提
: 交了很多地方的研究者寄来的email咨询有关我的工作,但这些1172都没有看。很多
: objective evidence都没有看,回复的时候只能再强调一下了。就像大蜜蜂说的,1172
: 好像只看reference letter。我觉得对于1172来说,推荐人吹不管用的,他/她就是要
: 看客观证据,已经有了影响,potential的不算。

avatar
y*1
47
bless
avatar
w*s
48
bless

【在 p*****y 的大作中提到】
: 是撞上1172了,所以前途未卜。具体如下:
: 1.review 通过
: 2.Contribution: while these references describe your achievements as
: novel and useful and state that you have contributed to your field of
: endeavor, they do not indicate how your work constituted a contribution
: of major significance to his field(rather than an individual lab or
: institution).
: 3.Authorship: You claim that you articles or publications have been
: cited 210 times but the evidence is not sufficient to establish the
: number of independent citations that cited your articles.

avatar
x*u
49
Bless!!
我是后面追加PP的,但还是碰到1172了。也是贡献这项没有过被RFE了。现在在准备中
,头大。准备补两封独立推荐信和一封rebuttal RL
大家的意见是1172只看RL,所以我们都好好准备推荐信吧。

1172

【在 p*****y 的大作中提到】
: 多谢tall和solgel的建议。
: 其实好多东西都已经提交了,写推荐信的推荐人都是引用我工作的,都说明了我的工作
: 对他们研究的影响。而且PL里还列举了一些其他人引用我工作的一些highlights,还提
: 交了很多地方的研究者寄来的email咨询有关我的工作,但这些1172都没有看。很多
: objective evidence都没有看,回复的时候只能再强调一下了。就像大蜜蜂说的,1172
: 好像只看reference letter。我觉得对于1172来说,推荐人吹不管用的,他/她就是要
: 看客观证据,已经有了影响,potential的不算。

avatar
T*r
50
Bless
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。