Redian新闻
>
Re: 最炫民族风又一新品 (转载)
avatar
Re: 最炫民族风又一新品 (转载)# pets - 心有所宠
p*2
1
这个是用什么算法来的?
avatar
y*g
3
avatar
j*n
4
【 以下文字转载自 Joke 讨论区 】
发信人: ss9937 (SS), 信区: Joke
标 题: Re: 最炫民族风又一新品
发信站: BBS 未名空间站 (Wed Apr 18 20:14:56 2012, 美东)
avatar
B*t
5
用两个堆?
avatar
t*n
6
是1:1兑换吗

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
R*d
7
哈哈哈, 澡房老客

【在 y****g 的大作中提到】

avatar
s*s
8
正好刚看了,
两个heap。

【在 p*****2 的大作中提到】
: 这个是用什么算法来的?
avatar
D*s
9
有意思,关键是这个miles兑换成机票的rate是多少?1 mile= 1 cent?
飞机票有里程积累不?

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
r*e
10
理论上是用一个最大堆和一个最小堆,保持元素个数最多相差一
http://stackoverflow.com/questions/10657503/find-running-median
不过这个要求全部data都能放进内存,不实用
实际上应该是根据counting sort原理,分多个bin来统计

【在 p*****2 的大作中提到】
: 这个是用什么算法来的?
avatar
l*3
11
翻出来条款,是这样写的:
https://www.discovercard.com/acquisitions/miles/terms.html
How do I Redeem My Miles?
Visit Discover.com or call 1-800-347-3085 24 hours a day/7 days a week and
choose how to redeem your Miles, including.
Credit to your account for travel purchases-starting at 1 mile.
Electronic deposit into an account you designate-starting at 1 mile.
Any way you redeem, 1 Mile is the cash equivalent of 1 penny.
Travel Purchases: Travel Purchases include a purchase made within the last
180 days on commercial airline tickets; hotel rooms; car rentals; cruises;
tour operators; vacation packages purchased through airlines, travel agents,
online travel sites; local and suburban commuter transportation, including
ferries; passenger railways; taxicabs and limousines; and charter/tour bus
lines. Purchases made using Near Field Communication (NFC), virtual wallets
or similar technology may not be eligible.
发现一句话:Any way you redeem, 1 Mile is the cash equivalent of 1 penny.

【在 t******n 的大作中提到】
: 是1:1兑换吗
avatar
r*e
12
如果是个endless stream就不行了..内存放不下

【在 s*******s 的大作中提到】
: 正好刚看了,
: 两个heap。

avatar
h*6
13
此迈非彼迈
如果csp点数用来买1.25的机票,那么这张卡更好,其他方面就哈哈了。
avatar
p*2
14

我问的就是这个意思。两个heap的CC150上有。记得有个什么算法来着。

【在 r*******e 的大作中提到】
: 如果是个endless stream就不行了..内存放不下
avatar
n*x
15
Any way you redeem, 1 Mile is the cash equivalent of 1 penny.

【在 D***s 的大作中提到】
: 有意思,关键是这个miles兑换成机票的rate是多少?1 mile= 1 cent?
: 飞机票有里程积累不?

avatar
r*e
16
我上面贴的stackoverflow链接里提到了一个P^2 algorithm,有paper链接
不知道是不是你说的。不过这个P^2也是近似的
如果允许近似,reservior sampling也行
exact的话除了binning好像没有别的好办法

【在 p*****2 的大作中提到】
:
: 我问的就是这个意思。两个heap的CC150上有。记得有个什么算法来着。

avatar
t*n
17
我准备转卡了

【在 l*********3 的大作中提到】
: 翻出来条款,是这样写的:
: https://www.discovercard.com/acquisitions/miles/terms.html
: How do I Redeem My Miles?
: Visit Discover.com or call 1-800-347-3085 24 hours a day/7 days a week and
: choose how to redeem your Miles, including.
: Credit to your account for travel purchases-starting at 1 mile.
: Electronic deposit into an account you designate-starting at 1 mile.
: Any way you redeem, 1 Mile is the cash equivalent of 1 penny.
: Travel Purchases: Travel Purchases include a purchase made within the last
: 180 days on commercial airline tickets; hotel rooms; car rentals; cruises;

avatar
t*3
18
用两个heap还不如直接quick sort一下.
我保证quicksort更快.

【在 s*******s 的大作中提到】
: 正好刚看了,
: 两个heap。

avatar
y*u
19
那还不如citi2%呢。。
avatar
p*2
20

reservior sampling有link吗?一直没看这个,要补补课了。

【在 r*******e 的大作中提到】
: 我上面贴的stackoverflow链接里提到了一个P^2 algorithm,有paper链接
: 不知道是不是你说的。不过这个P^2也是近似的
: 如果允许近似,reservior sampling也行
: exact的话除了binning好像没有别的好办法

avatar
y*i
21
will lose quarterly 5%, though

【在 t******n 的大作中提到】
: 我准备转卡了
avatar
p*2
22
看到这个了
If the variance of the input is statistically distributed (e.g. normal , log
-normal ... etc) then reservoir sampling is a reasonable way of estimating
percentiles/medians from an arbitrarily long stream of numbers.
int n = 0; // Running count of elements observed so far
#define SIZE 10000
int reservoir[SIZE];
while(streamHasData())
{
int x = readNumberFromStream();
if (n < SIZE)
{
reservoir[n++] = x;
}
else
{
int p = random(++n); // Choose a random number 0 >= p < n
if (p < SIZE)
{
reservoir[p] = x;
}
}
}
"reservoir" is then a running, uniform (fair), sample of all input -
regardless of size. Finding the median (or any percentile) is then a
straight-forward matter of sorting the reservoir and polling the interesting
point.
Since the reservoir is fixed size, the sort can be considered to be
effectively O(1) - and this method runs with both constant time and memory
consumption.
avatar
v*r
23
就是第一年3% 第二年1.5% 然后每年30飞机wifi钱喽 无年费卡
avatar
w*f
24
学习了。。。

log

【在 p*****2 的大作中提到】
: 看到这个了
: If the variance of the input is statistically distributed (e.g. normal , log
: -normal ... etc) then reservoir sampling is a reasonable way of estimating
: percentiles/medians from an arbitrarily long stream of numbers.
: int n = 0; // Running count of elements observed so far
: #define SIZE 10000
: int reservoir[SIZE];
: while(streamHasData())
: {
: int x = readNumberFromStream();

avatar
m*2
25
这个和Discover Miles有什么区别?
avatar
w*y
26
这个条件是什么意思?
If the variance of the input is statistically distributed
为什么是variance?

log

【在 p*****2 的大作中提到】
: 看到这个了
: If the variance of the input is statistically distributed (e.g. normal , log
: -normal ... etc) then reservoir sampling is a reasonable way of estimating
: percentiles/medians from an arbitrarily long stream of numbers.
: int n = 0; // Running count of elements observed so far
: #define SIZE 10000
: int reservoir[SIZE];
: while(streamHasData())
: {
: int x = readNumberFromStream();

avatar
a*x
27
估计也会没有了。。。。

【在 m**2 的大作中提到】
: 这个和Discover Miles有什么区别?
avatar
w*r
28
那个5%基本每年都用不上,准备转卡,30一年的wifi不错

【在 y****i 的大作中提到】
: will lose quarterly 5%, though
avatar
y*i
29
how come?
gas, Department store, online shopping, theme parks, etc.

【在 w****r 的大作中提到】
: 那个5%基本每年都用不上,准备转卡,30一年的wifi不错
avatar
y*i
30
Discover Miles has been discontinued
Discover miles earns 2% on travel and restaurants but limited to $3,000/year
purchase, 1% everywhere else. It has worse ratio when redeeming for cash

【在 m**2 的大作中提到】
: 这个和Discover Miles有什么区别?
avatar
w*r
31
没时间出去玩,没钱买东西,全部省下来,不怎么花钱了。

【在 y****i 的大作中提到】
: how come?
: gas, Department store, online shopping, theme parks, etc.

avatar
a*1
32
为什么要转卡?直接申请一张新卡不行吗?
版上不是有很多人同时拥有两张discover吗?
avatar
t*n
33
能转里程的话损失300也不亏

【在 y****i 的大作中提到】
: will lose quarterly 5%, though
avatar
y*i
34
1 mile = 1 cent
fixed value

【在 t******n 的大作中提到】
: 能转里程的话损失300也不亏
avatar
t*n
35
Electronic deposit into an account you designate-starting at 1 mile.
这句怎么理解,是转点的意思吗

【在 y****i 的大作中提到】
: 1 mile = 1 cent
: fixed value

avatar
y*i
36
redeem for cash

【在 t******n 的大作中提到】
: Electronic deposit into an account you designate-starting at 1 mile.
: 这句怎么理解,是转点的意思吗

avatar
t*n
37
看来和arrival是类似产品,没啥意思

【在 y****i 的大作中提到】
: redeem for cash
avatar
l*3
38
目前最大的悬念是这句话:
Exclusive offer: We double all the Miles you've earned at the end of your
first year
Double 时,包括通过 ShopDiscover / Discover Deals 获得的 miles 么?
avatar
y*i
39
I bet not

【在 l*********3 的大作中提到】
: 目前最大的悬念是这句话:
: Exclusive offer: We double all the Miles you've earned at the end of your
: first year
: Double 时,包括通过 ShopDiscover / Discover Deals 获得的 miles 么?

avatar
l*n
40
有开卡bonus吗?$400以下都不值得考虑

★ 发自iPhone App: ChineseWeb 8.6

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
h*s
41
就是存到你指定的checking account里,1mile等于1分。

【在 t******n 的大作中提到】
: Electronic deposit into an account you designate-starting at 1 mile.
: 这句怎么理解,是转点的意思吗

avatar
h*s
42
discover历史上开卡bonus就非常少,150基本就最高了。400得等你做了Discover CEO
的时候给一个。

【在 l*******n 的大作中提到】
: 有开卡bonus吗?$400以下都不值得考虑
:
: ★ 发自iPhone App: ChineseWeb 8.6

avatar
p*y
43
哪个无年费卡开卡给400刀?

【在 l*******n 的大作中提到】
: 有开卡bonus吗?$400以下都不值得考虑
:
: ★ 发自iPhone App: ChineseWeb 8.6

avatar
D*s
44
2013年Barclay NFL extra points那张卡就是花1000给$400

【在 p*****y 的大作中提到】
: 哪个无年费卡开卡给400刀?
avatar
t*n
45
嗯,我以为是转去自己指定的里程账户呢
只有第一年有3%,还没有each quarter 5%,不如arrival好

【在 h****s 的大作中提到】
: 就是存到你指定的checking account里,1mile等于1分。
avatar
r*e
46
坐等
avatar
c*8
47
感觉和barclays arrival那个系列一个意思
avatar
m*1
48
Arrival 有年费, 这个没年费

【在 t******n 的大作中提到】
: 嗯,我以为是转去自己指定的里程账户呢
: 只有第一年有3%,还没有each quarter 5%,不如arrival好

avatar
c*8
49
arrival没年费,arrival+才有年费,arrival+还有$440的开卡bonus

【在 m****1 的大作中提到】
: Arrival 有年费, 这个没年费
avatar
d*j
50
估计拿的多的一年快结束了就给你关了,不会让你有机会abuse这个3%的

【在 t******n 的大作中提到】
: 嗯,我以为是转去自己指定的里程账户呢
: 只有第一年有3%,还没有each quarter 5%,不如arrival好

avatar
w*8
51
估计过段时间会有bonus,等。
avatar
s*k
52
不太可能有bonus。最多有refer bonus,但是也得等一年以后,申卡人数下来。
第一年3%完胜神卡和double cash。30的in-flight wifi已经非常不错了,而且还没境
外手续费。
很多人趋之若鹜吧。

【在 w****8 的大作中提到】
: 估计过段时间会有bonus,等。
avatar
t*n
53
只能用来抵travel expense有局限

【在 s******k 的大作中提到】
: 不太可能有bonus。最多有refer bonus,但是也得等一年以后,申卡人数下来。
: 第一年3%完胜神卡和double cash。30的in-flight wifi已经非常不错了,而且还没境
: 外手续费。
: 很多人趋之若鹜吧。

avatar
f*e
54
没什么兴趣
avatar
s*g
55
那你为啥会花掉30的in-flight wifi...

【在 w****r 的大作中提到】
: 没时间出去玩,没钱买东西,全部省下来,不怎么花钱了。
avatar
a*2
56
怕不怕被discover无厘头得再关一次
avatar
l*n
57
第一年免年费的到处都有

【在 p*****y 的大作中提到】
: 哪个无年费卡开卡给400刀?
avatar
t*n
59
是1:1兑换吗

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
D*s
60
有意思,关键是这个miles兑换成机票的rate是多少?1 mile= 1 cent?
飞机票有里程积累不?

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
l*3
61
翻出来条款,是这样写的:
https://www.discovercard.com/acquisitions/miles/terms.html
How do I Redeem My Miles?
Visit Discover.com or call 1-800-347-3085 24 hours a day/7 days a week and
choose how to redeem your Miles, including.
Credit to your account for travel purchases-starting at 1 mile.
Electronic deposit into an account you designate-starting at 1 mile.
Any way you redeem, 1 Mile is the cash equivalent of 1 penny.
Travel Purchases: Travel Purchases include a purchase made within the last
180 days on commercial airline tickets; hotel rooms; car rentals; cruises;
tour operators; vacation packages purchased through airlines, travel agents,
online travel sites; local and suburban commuter transportation, including
ferries; passenger railways; taxicabs and limousines; and charter/tour bus
lines. Purchases made using Near Field Communication (NFC), virtual wallets
or similar technology may not be eligible.
发现一句话:Any way you redeem, 1 Mile is the cash equivalent of 1 penny.

【在 t******n 的大作中提到】
: 是1:1兑换吗
avatar
h*6
62
此迈非彼迈
如果csp点数用来买1.25的机票,那么这张卡更好,其他方面就哈哈了。
avatar
n*x
63
Any way you redeem, 1 Mile is the cash equivalent of 1 penny.

【在 D***s 的大作中提到】
: 有意思,关键是这个miles兑换成机票的rate是多少?1 mile= 1 cent?
: 飞机票有里程积累不?

avatar
t*n
64
我准备转卡了

【在 l*********3 的大作中提到】
: 翻出来条款,是这样写的:
: https://www.discovercard.com/acquisitions/miles/terms.html
: How do I Redeem My Miles?
: Visit Discover.com or call 1-800-347-3085 24 hours a day/7 days a week and
: choose how to redeem your Miles, including.
: Credit to your account for travel purchases-starting at 1 mile.
: Electronic deposit into an account you designate-starting at 1 mile.
: Any way you redeem, 1 Mile is the cash equivalent of 1 penny.
: Travel Purchases: Travel Purchases include a purchase made within the last
: 180 days on commercial airline tickets; hotel rooms; car rentals; cruises;

avatar
y*u
65
那还不如citi2%呢。。
avatar
y*i
66
will lose quarterly 5%, though

【在 t******n 的大作中提到】
: 我准备转卡了
avatar
v*r
67
就是第一年3% 第二年1.5% 然后每年30飞机wifi钱喽 无年费卡
avatar
m*2
68
这个和Discover Miles有什么区别?
avatar
a*x
69
估计也会没有了。。。。

【在 m**2 的大作中提到】
: 这个和Discover Miles有什么区别?
avatar
w*r
70
那个5%基本每年都用不上,准备转卡,30一年的wifi不错

【在 y****i 的大作中提到】
: will lose quarterly 5%, though
avatar
y*i
71
how come?
gas, Department store, online shopping, theme parks, etc.

【在 w****r 的大作中提到】
: 那个5%基本每年都用不上,准备转卡,30一年的wifi不错
avatar
y*i
72
Discover Miles has been discontinued
Discover miles earns 2% on travel and restaurants but limited to $3,000/year
purchase, 1% everywhere else. It has worse ratio when redeeming for cash

【在 m**2 的大作中提到】
: 这个和Discover Miles有什么区别?
avatar
w*r
73
没时间出去玩,没钱买东西,全部省下来,不怎么花钱了。

【在 y****i 的大作中提到】
: how come?
: gas, Department store, online shopping, theme parks, etc.

avatar
a*1
74
为什么要转卡?直接申请一张新卡不行吗?
版上不是有很多人同时拥有两张discover吗?
avatar
t*n
75
能转里程的话损失300也不亏

【在 y****i 的大作中提到】
: will lose quarterly 5%, though
avatar
y*i
76
1 mile = 1 cent
fixed value

【在 t******n 的大作中提到】
: 能转里程的话损失300也不亏
avatar
t*n
77
Electronic deposit into an account you designate-starting at 1 mile.
这句怎么理解,是转点的意思吗

【在 y****i 的大作中提到】
: 1 mile = 1 cent
: fixed value

avatar
y*i
78
redeem for cash

【在 t******n 的大作中提到】
: Electronic deposit into an account you designate-starting at 1 mile.
: 这句怎么理解,是转点的意思吗

avatar
t*n
79
看来和arrival是类似产品,没啥意思

【在 y****i 的大作中提到】
: redeem for cash
avatar
l*3
80
目前最大的悬念是这句话:
Exclusive offer: We double all the Miles you've earned at the end of your
first year
Double 时,包括通过 ShopDiscover / Discover Deals 获得的 miles 么?
avatar
y*i
81
I bet not

【在 l*********3 的大作中提到】
: 目前最大的悬念是这句话:
: Exclusive offer: We double all the Miles you've earned at the end of your
: first year
: Double 时,包括通过 ShopDiscover / Discover Deals 获得的 miles 么?

avatar
l*n
82
有开卡bonus吗?$400以下都不值得考虑

★ 发自iPhone App: ChineseWeb 8.6

【在 l*********3 的大作中提到】
: https://www.discover.com/credit-cards/miles/
: 相当于 1.5x Everything / 第一年 3x Everything
: + 每年报销 $30 in-flight Wi-Fi. 无年费,无境外交易费。

avatar
h*s
83
就是存到你指定的checking account里,1mile等于1分。

【在 t******n 的大作中提到】
: Electronic deposit into an account you designate-starting at 1 mile.
: 这句怎么理解,是转点的意思吗

avatar
h*s
84
discover历史上开卡bonus就非常少,150基本就最高了。400得等你做了Discover CEO
的时候给一个。

【在 l*******n 的大作中提到】
: 有开卡bonus吗?$400以下都不值得考虑
:
: ★ 发自iPhone App: ChineseWeb 8.6

avatar
p*y
85
哪个无年费卡开卡给400刀?

【在 l*******n 的大作中提到】
: 有开卡bonus吗?$400以下都不值得考虑
:
: ★ 发自iPhone App: ChineseWeb 8.6

avatar
D*s
86
2013年Barclay NFL extra points那张卡就是花1000给$400

【在 p*****y 的大作中提到】
: 哪个无年费卡开卡给400刀?
avatar
t*n
87
嗯,我以为是转去自己指定的里程账户呢
只有第一年有3%,还没有each quarter 5%,不如arrival好

【在 h****s 的大作中提到】
: 就是存到你指定的checking account里,1mile等于1分。
avatar
r*e
88
坐等
avatar
c*8
89
感觉和barclays arrival那个系列一个意思
avatar
m*1
90
Arrival 有年费, 这个没年费

【在 t******n 的大作中提到】
: 嗯,我以为是转去自己指定的里程账户呢
: 只有第一年有3%,还没有each quarter 5%,不如arrival好

avatar
c*8
91
arrival没年费,arrival+才有年费,arrival+还有$440的开卡bonus

【在 m****1 的大作中提到】
: Arrival 有年费, 这个没年费
avatar
d*j
92
估计拿的多的一年快结束了就给你关了,不会让你有机会abuse这个3%的

【在 t******n 的大作中提到】
: 嗯,我以为是转去自己指定的里程账户呢
: 只有第一年有3%,还没有each quarter 5%,不如arrival好

avatar
w*8
93
估计过段时间会有bonus,等。
avatar
s*k
94
不太可能有bonus。最多有refer bonus,但是也得等一年以后,申卡人数下来。
第一年3%完胜神卡和double cash。30的in-flight wifi已经非常不错了,而且还没境
外手续费。
很多人趋之若鹜吧。

【在 w****8 的大作中提到】
: 估计过段时间会有bonus,等。
avatar
t*n
95
只能用来抵travel expense有局限

【在 s******k 的大作中提到】
: 不太可能有bonus。最多有refer bonus,但是也得等一年以后,申卡人数下来。
: 第一年3%完胜神卡和double cash。30的in-flight wifi已经非常不错了,而且还没境
: 外手续费。
: 很多人趋之若鹜吧。

avatar
f*e
96
没什么兴趣
avatar
s*g
97
那你为啥会花掉30的in-flight wifi...

【在 w****r 的大作中提到】
: 没时间出去玩,没钱买东西,全部省下来,不怎么花钱了。
avatar
a*2
98
怕不怕被discover无厘头得再关一次
avatar
l*n
99
第一年免年费的到处都有

【在 p*****y 的大作中提到】
: 哪个无年费卡开卡给400刀?
avatar
x*9
100
还是没搞明白
可以转到任何指定里程帐号,1:1?
那还是很牛逼的啊
avatar
d*j
101
阅读能力堪忧。

【在 x*****9 的大作中提到】
: 还是没搞明白
: 可以转到任何指定里程帐号,1:1?
: 那还是很牛逼的啊

avatar
x*9
102

看了下各位的讨论
就是1 mile= 1cent
mile就是个point的别称而已
跟里程没有半毛钱关系。。。

【在 d**j 的大作中提到】
: 阅读能力堪忧。
avatar
m*2
103
擦边关系是redeem travel expense。

【在 x*****9 的大作中提到】
:
: 看了下各位的讨论
: 就是1 mile= 1cent
: mile就是个point的别称而已
: 跟里程没有半毛钱关系。。。

avatar
p*9
104
申请了,但是没批准。 Discover给出的理由是"status of existing /prior discover
account"
我5年前申请过一张5%每个季节不同种类cash back的Discover信用卡,但在差不多2年
后关了。 之后(差不多3年前)又申请了一张discover road card (就是餐馆吃饭2%的
现金返还)。 两张卡都没出现过任何晚还款。
现在给出这理由,不知道如何去和Discover argue一下?
我信用记录有7-8年的历史,信用分数根据上个月discover帐单来看是700分的样子。
谢谢!
avatar
m*2
105
打电话。不行,convert old card.

discover

【在 p********9 的大作中提到】
: 申请了,但是没批准。 Discover给出的理由是"status of existing /prior discover
: account"
: 我5年前申请过一张5%每个季节不同种类cash back的Discover信用卡,但在差不多2年
: 后关了。 之后(差不多3年前)又申请了一张discover road card (就是餐馆吃饭2%的
: 现金返还)。 两张卡都没出现过任何晚还款。
: 现在给出这理由,不知道如何去和Discover argue一下?
: 我信用记录有7-8年的历史,信用分数根据上个月discover帐单来看是700分的样子。
: 谢谢!

avatar
p*9
106
谢谢! 我周一一大早就电话去。 convert old card 不知道容易不容易了。 我现在手
上有citi 2% cash back的卡,所以那张discover road card留着其实也没啥意思,特
别是连现在shop discover都没了。

【在 m**2 的大作中提到】
: 打电话。不行,convert old card.
:
: discover

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