Redian新闻
>
FIA神卡的神话在继续?
avatar
FIA神卡的神话在继续?# Money - 海外理财
n*n
1
Given a list of words with a same size and a big string that
contains one of the permutation of all the words combined(say p),
find the start index of the string p in the big string.
现在能想到的解法就是:
- find the positions of all the words in the big string
- if you mod with the size of word(same for all words)
should give the same value for all the word positions in the big string and
the lowest position is the startindex.
不知道大家有什么更好的办法没有?这题要用trie吗?
avatar
N*g
2
二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
好像FIA里面直接能定UA机票。
avatar
g*y
3
Did I misunderstand anything? This sounds like find substring(k*L, k*L+L) ==
p?
L is length of p.

and
★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 n******n 的大作中提到】
: Given a list of words with a same size and a big string that
: contains one of the permutation of all the words combined(say p),
: find the start index of the string p in the big string.
: 现在能想到的解法就是:
: - find the positions of all the words in the big string
: - if you mod with the size of word(same for all words)
: should give the same value for all the word positions in the big string and
: the lowest position is the startindex.
: 不知道大家有什么更好的办法没有?这题要用trie吗?

avatar
e*n
4
不是说神卡已经不神了么?
avatar
n*n
5
我对题意的理解是:
比如
the list of words with the same size: abc, def, ghi
the big string: xxxdefghiabcxxxxxx
应该返回3,因为defghiabc是一个(abc, def, ghi)的permutation, 它在big string中
起始index是3.
avatar
s*r
6
可以订机票,比cash value高

【在 N****g 的大作中提到】
: 二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
: 好像FIA里面直接能定UA机票。

avatar
a*u
7
build the prefix tree of the word list. Scan the long string to check if it'
s match.
avatar
s*r
8
一直没觉得这张卡有多神,如果不嫌麻烦的话,基本每笔消费都有5%的cb.
avatar
d*l
9
假设有m个单词每个长为L,big string的长度为n。
可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
就行。总的复杂度是nL。

and

【在 n******n 的大作中提到】
: Given a list of words with a same size and a big string that
: contains one of the permutation of all the words combined(say p),
: find the start index of the string p in the big string.
: 现在能想到的解法就是:
: - find the positions of all the words in the big string
: - if you mod with the size of word(same for all words)
: should give the same value for all the word positions in the big string and
: the lowest position is the startindex.
: 不知道大家有什么更好的办法没有?这题要用trie吗?

avatar
t*j
10
订ua机票怎么算钱法?

[发表自未名空间手机版 - m.mitbbs.com]

【在 N****g 的大作中提到】
: 二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
: 好像FIA里面直接能定UA机票。

avatar
b*i
11
你所说的解法中,为什么要用trie?用hashtable应该更好啊。时间复杂度是n。

i+
count

【在 d*******l 的大作中提到】
: 假设有m个单词每个长为L,big string的长度为n。
: 可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
: 2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
: 连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
: 就行。总的复杂度是nL。
:
: and

avatar
N*g
12
我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
的人估计有另外的用法。

【在 t***j 的大作中提到】
: 订ua机票怎么算钱法?
:
: [发表自未名空间手机版 - m.mitbbs.com]

avatar
d*l
13
如果是普通的hashtable,计算一个word的hash值至少是O(L)的,加上一些别的开销,
可能还不如trie最多访问L个节点效率高。如果用类似rabin-karp里那种hash,就是通
过前面的单词的hash值O(1)时间计算出后面的单词的hash值,就需要解决冲突来保证正
确性。我觉得都是可以的,hashtable也不是一定就会更好。

【在 b*****i 的大作中提到】
: 你所说的解法中,为什么要用trie?用hashtable应该更好啊。时间复杂度是n。
:
: i+
: count

avatar
t*j
14
要是这样,用户直接把点数deposit按1c一点,再用信用卡买机票好了。
好像以前看过,fia 点数可以用来定马尔代夫的旅游package,这样算点数可能就一点值
几c了。

[发表自未名空间手机版 - m.mitbbs.com]

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
n*n
15
Given a list of words with a same size and a big string that
contains one of the permutation of all the words combined(say p),
find the start index of the string p in the big string.
现在能想到的解法就是:
- find the positions of all the words in the big string
- if you mod with the size of word(same for all words)
should give the same value for all the word positions in the big string and
the lowest position is the startindex.
不知道大家有什么更好的办法没有?这题要用trie吗?
avatar
N*g
16
板上有多少人会去马尔代夫旅游?还是卖给收点的人最核算了。

【在 t***j 的大作中提到】
: 要是这样,用户直接把点数deposit按1c一点,再用信用卡买机票好了。
: 好像以前看过,fia 点数可以用来定马尔代夫的旅游package,这样算点数可能就一点值
: 几c了。
:
: [发表自未名空间手机版 - m.mitbbs.com]

avatar
g*y
17
Did I misunderstand anything? This sounds like find substring(k*L, k*L+L) ==
p?
L is length of p.

and
★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 n******n 的大作中提到】
: Given a list of words with a same size and a big string that
: contains one of the permutation of all the words combined(say p),
: find the start index of the string p in the big string.
: 现在能想到的解法就是:
: - find the positions of all the words in the big string
: - if you mod with the size of word(same for all words)
: should give the same value for all the word positions in the big string and
: the lowest position is the startindex.
: 不知道大家有什么更好的办法没有?这题要用trie吗?

avatar
g*n
18
去马尔代夫旅游现在在中国好像很普遍吧
这里其实大家想去也不难吧

【在 N****g 的大作中提到】
: 板上有多少人会去马尔代夫旅游?还是卖给收点的人最核算了。
avatar
n*n
19
我对题意的理解是:
比如
the list of words with the same size: abc, def, ghi
the big string: xxxdefghiabcxxxxxx
应该返回3,因为defghiabc是一个(abc, def, ghi)的permutation, 它在big string中
起始index是3.
avatar
N*g
20
OK, FIA神卡新名字:Amex马尔代夫旅游卡

【在 g**n 的大作中提到】
: 去马尔代夫旅游现在在中国好像很普遍吧
: 这里其实大家想去也不难吧

avatar
a*u
21
build the prefix tree of the word list. Scan the long string to check if it'
s match.
avatar
E*y
22
如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
d*l
23
假设有m个单词每个长为L,big string的长度为n。
可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
就行。总的复杂度是nL。

and

【在 n******n 的大作中提到】
: Given a list of words with a same size and a big string that
: contains one of the permutation of all the words combined(say p),
: find the start index of the string p in the big string.
: 现在能想到的解法就是:
: - find the positions of all the words in the big string
: - if you mod with the size of word(same for all words)
: should give the same value for all the word positions in the big string and
: the lowest position is the startindex.
: 不知道大家有什么更好的办法没有?这题要用trie吗?

avatar
s*a
24
How? I randomly searched a ticket which cost $261.3 or 26130 points.

【在 E*******y 的大作中提到】
: 如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。
avatar
b*i
25
你所说的解法中,为什么要用trie?用hashtable应该更好啊。时间复杂度是n。

i+
count

【在 d*******l 的大作中提到】
: 假设有m个单词每个长为L,big string的长度为n。
: 可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
: 2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
: 连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
: 就行。总的复杂度是nL。
:
: and

avatar
m*2
26
关注!
avatar
d*l
27
如果是普通的hashtable,计算一个word的hash值至少是O(L)的,加上一些别的开销,
可能还不如trie最多访问L个节点效率高。如果用类似rabin-karp里那种hash,就是通
过前面的单词的hash值O(1)时间计算出后面的单词的hash值,就需要解决冲突来保证正
确性。我觉得都是可以的,hashtable也不是一定就会更好。

【在 b*****i 的大作中提到】
: 你所说的解法中,为什么要用trie?用hashtable应该更好啊。时间复杂度是n。
:
: i+
: count

avatar
T*4
28
表示持续关注
avatar
H*e
29
没看懂
"并且对于每个
连续的m个这样的子串判断是否m个单词都出现过"
为什么复杂度里面这里没有 m?

i+
count

【在 d*******l 的大作中提到】
: 假设有m个单词每个长为L,big string的长度为n。
: 可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
: 2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
: 连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
: 就行。总的复杂度是nL。
:
: and

avatar
E*y
30
Basic Air Rewards
We describe Basic Air Rewards both in terms of the number of Points required
and a corresponding maximum dollar value ("MDV")., If the air reward you
wish to obtain conforms to our specified booking terms, and does not exceed
the corresponding MDV, it will be considered a Basic Air Reward. If the
dollar cost of an air reward you wish to obtain exceeds the MDV, you may
obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
September 11th security fee. An additional fee may apply to all Basic Air
Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
via telephone. The amount of such fee(s) will be disclosed at the point of
redemption. The number of Points and corresponding MDV required for coach-
class Basic Air Rewards are: within the 48 continental states of the U.S.:
25,000/$400; from the 48 states to Canada, Mexico, Puerto Rico: 35,000/$600;
from the 48 states to Alaska, Hawaii, the Bahamas, Bermuda or the Caribbean
; 45,000/$600; from the 48 states to Europe: 60,000/$800; and from the 48
states to Central or South America, Asia, Africa, or the South Pacific: 85,
000/$1,150. The number of Points and corresponding MDV required for first-
or business-class air rewards from the 48 states to any location listed
above, are: 100,000/$1,500; 135,000/$2,000; 200,000/$3,000; 265,000/$4,000;
335,000/$5,000. References to the 48 states include travel to the District
of Columbia. Round-trip ticketing must be made through the WorldPoints
Redemption Center on the same U.S. carrier, approved by the Airline
Reporting Corporation. Unless redeeming Points for first- or business class
travel, the ticket will be coach-class and the lowest fare available through
the travel provider at the time of booking. Reservations and ticketing
require at least 21 days' advance notice and must include a Saturday night
stay. Most international travel: stay at least 7 but no more than 30 days.
Check requirements when booking. Stopovers of more than 4 hours are not
permitted and there is no limit on connections. Actual travel dates/times
are subject to availability of coach-, business-, or first-class airfare, as
applicable. Air rewards are not refundable (see General Terms, Paragraph 7)
. Miscellaneous costs, including, but not limited to, excess baggage,
gratuities, insurance, and airline amenities, are your responsibility.

【在 s****a 的大作中提到】
: How? I randomly searched a ticket which cost $261.3 or 26130 points.
avatar
k*t
31
如果以m为单位从后往前比,还可以每次向前跳up to mL个字符。

i+
count

【在 d*******l 的大作中提到】
: 假设有m个单词每个长为L,big string的长度为n。
: 可以先建起所有单词的trie tree。然后对于i in [0,L),对p[i+0..i+L-1],p[i+L..i+
: 2*L-1],p[i+2*L..i+3*L-1]...这些子串在trie中搜索是否是某个单词,并且对于每个
: 连续的m个这样的子串判断是否m个单词都出现过,这个用一个长位L的数组记录下count
: 就行。总的复杂度是nL。
:
: and

avatar
c*u
32
就是说要定coach class才能享受

required
exceed

【在 E*******y 的大作中提到】
: Basic Air Rewards
: We describe Basic Air Rewards both in terms of the number of Points required
: and a corresponding maximum dollar value ("MDV")., If the air reward you
: wish to obtain conforms to our specified booking terms, and does not exceed
: the corresponding MDV, it will be considered a Basic Air Reward. If the
: dollar cost of an air reward you wish to obtain exceeds the MDV, you may
: obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
: September 11th security fee. An additional fee may apply to all Basic Air
: Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
: via telephone. The amount of such fee(s) will be disclosed at the point of

avatar
e*i
33
Another possible good thing : You might be able to earn miles after
the flight! Just like thankyou points.

【在 c***u 的大作中提到】
: 就是说要定coach class才能享受
:
: required
: exceed

avatar
l*y
34
试了下,照这样最大理论价值是1.48c,但是相当不flexible,不觉得收点的能用得上

【在 E*******y 的大作中提到】
: 如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。
avatar
E*y
35
为什么是1.48?400/25K是1.6啊。

【在 l****y 的大作中提到】
: 试了下,照这样最大理论价值是1.48c,但是相当不flexible,不觉得收点的能用得上
avatar
l*y
36
试一下就知道啊,有30的fee

【在 E*******y 的大作中提到】
: 为什么是1.48?400/25K是1.6啊。
avatar
b*a
37
那好像比spg好一点, spg是$100 有 up to $2
this one is $100 有 2×1.4=2.8
avatar
d*h
38
这帖子讨论出结论了没?
avatar
d*h
39
我搜到的更奇葩:25,000 Points + $30.00 or $185.80

【在 s****a 的大作中提到】
: How? I randomly searched a ticket which cost $261.3 or 26130 points.
avatar
h*G
40
收点的是去兑business/first class
利润不是你们能想到的.

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
l*y
41
for example?

【在 h**G 的大作中提到】
: 收点的是去兑business/first class
: 利润不是你们能想到的.

avatar
m*k
42
.l从北边去墨西哥比较划算啊。选直飞。
35000pt换600块。
avatar
OX
43
It's not that simple. Just called and there are some requirements to meet.
1. Must be roundtrip
2. Must have a Staurday stay
3. Must book at least 21 days in advance
4. Max 30 days stay for international
5. Only applies to the lowest fare for the same route
attached is a sample. lowest fare is $240.18 and eligible for the 25K
points + $30 booking fees basic air rewards.

required
exceed

【在 E*******y 的大作中提到】
: Basic Air Rewards
: We describe Basic Air Rewards both in terms of the number of Points required
: and a corresponding maximum dollar value ("MDV")., If the air reward you
: wish to obtain conforms to our specified booking terms, and does not exceed
: the corresponding MDV, it will be considered a Basic Air Reward. If the
: dollar cost of an air reward you wish to obtain exceeds the MDV, you may
: obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
: September 11th security fee. An additional fee may apply to all Basic Air
: Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
: via telephone. The amount of such fee(s) will be disclosed at the point of

avatar
m*k
44
i think you can select non stop to filter out stops flight

【在 OX 的大作中提到】
: It's not that simple. Just called and there are some requirements to meet.
: 1. Must be roundtrip
: 2. Must have a Staurday stay
: 3. Must book at least 21 days in advance
: 4. Max 30 days stay for international
: 5. Only applies to the lowest fare for the same route
: attached is a sample. lowest fare is $240.18 and eligible for the 25K
: points + $30 booking fees basic air rewards.
:
: required

avatar
f*s
45
我觉得和Ua, Aa delta都不会沾边,Alaska 我觉得最有可能
avatar
t*u
46
如果能是alaska的话
就爽死了
ak州内的机票都贵的要死的
但是距离很近

【在 f*******s 的大作中提到】
: 我觉得和Ua, Aa delta都不会沾边,Alaska 我觉得最有可能
avatar
N*g
47
二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
好像FIA里面直接能定UA机票。
avatar
e*n
48
不是说神卡已经不神了么?
avatar
s*r
49
可以订机票,比cash value高

【在 N****g 的大作中提到】
: 二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
: 好像FIA里面直接能定UA机票。

avatar
s*r
50
一直没觉得这张卡有多神,如果不嫌麻烦的话,基本每笔消费都有5%的cb.
avatar
t*j
51
订ua机票怎么算钱法?

[发表自未名空间手机版 - m.mitbbs.com]

【在 N****g 的大作中提到】
: 二手版有人1.3在收,估计讨价还价一番1.4出都有可能。
: 好像FIA里面直接能定UA机票。

avatar
N*g
52
我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
的人估计有另外的用法。

【在 t***j 的大作中提到】
: 订ua机票怎么算钱法?
:
: [发表自未名空间手机版 - m.mitbbs.com]

avatar
t*j
53
要是这样,用户直接把点数deposit按1c一点,再用信用卡买机票好了。
好像以前看过,fia 点数可以用来定马尔代夫的旅游package,这样算点数可能就一点值
几c了。

[发表自未名空间手机版 - m.mitbbs.com]

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
N*g
54
板上有多少人会去马尔代夫旅游?还是卖给收点的人最核算了。

【在 t***j 的大作中提到】
: 要是这样,用户直接把点数deposit按1c一点,再用信用卡买机票好了。
: 好像以前看过,fia 点数可以用来定马尔代夫的旅游package,这样算点数可能就一点值
: 几c了。
:
: [发表自未名空间手机版 - m.mitbbs.com]

avatar
g*n
55
去马尔代夫旅游现在在中国好像很普遍吧
这里其实大家想去也不难吧

【在 N****g 的大作中提到】
: 板上有多少人会去马尔代夫旅游?还是卖给收点的人最核算了。
avatar
N*g
56
OK, FIA神卡新名字:Amex马尔代夫旅游卡

【在 g**n 的大作中提到】
: 去马尔代夫旅游现在在中国好像很普遍吧
: 这里其实大家想去也不难吧

avatar
E*y
57
如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
s*a
58
How? I randomly searched a ticket which cost $261.3 or 26130 points.

【在 E*******y 的大作中提到】
: 如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。
avatar
m*2
59
关注!
avatar
T*4
60
表示持续关注
avatar
E*y
61
Basic Air Rewards
We describe Basic Air Rewards both in terms of the number of Points required
and a corresponding maximum dollar value ("MDV")., If the air reward you
wish to obtain conforms to our specified booking terms, and does not exceed
the corresponding MDV, it will be considered a Basic Air Reward. If the
dollar cost of an air reward you wish to obtain exceeds the MDV, you may
obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
September 11th security fee. An additional fee may apply to all Basic Air
Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
via telephone. The amount of such fee(s) will be disclosed at the point of
redemption. The number of Points and corresponding MDV required for coach-
class Basic Air Rewards are: within the 48 continental states of the U.S.:
25,000/$400; from the 48 states to Canada, Mexico, Puerto Rico: 35,000/$600;
from the 48 states to Alaska, Hawaii, the Bahamas, Bermuda or the Caribbean
; 45,000/$600; from the 48 states to Europe: 60,000/$800; and from the 48
states to Central or South America, Asia, Africa, or the South Pacific: 85,
000/$1,150. The number of Points and corresponding MDV required for first-
or business-class air rewards from the 48 states to any location listed
above, are: 100,000/$1,500; 135,000/$2,000; 200,000/$3,000; 265,000/$4,000;
335,000/$5,000. References to the 48 states include travel to the District
of Columbia. Round-trip ticketing must be made through the WorldPoints
Redemption Center on the same U.S. carrier, approved by the Airline
Reporting Corporation. Unless redeeming Points for first- or business class
travel, the ticket will be coach-class and the lowest fare available through
the travel provider at the time of booking. Reservations and ticketing
require at least 21 days' advance notice and must include a Saturday night
stay. Most international travel: stay at least 7 but no more than 30 days.
Check requirements when booking. Stopovers of more than 4 hours are not
permitted and there is no limit on connections. Actual travel dates/times
are subject to availability of coach-, business-, or first-class airfare, as
applicable. Air rewards are not refundable (see General Terms, Paragraph 7)
. Miscellaneous costs, including, but not limited to, excess baggage,
gratuities, insurance, and airline amenities, are your responsibility.

【在 s****a 的大作中提到】
: How? I randomly searched a ticket which cost $261.3 or 26130 points.
avatar
c*u
62
就是说要定coach class才能享受

required
exceed

【在 E*******y 的大作中提到】
: Basic Air Rewards
: We describe Basic Air Rewards both in terms of the number of Points required
: and a corresponding maximum dollar value ("MDV")., If the air reward you
: wish to obtain conforms to our specified booking terms, and does not exceed
: the corresponding MDV, it will be considered a Basic Air Reward. If the
: dollar cost of an air reward you wish to obtain exceeds the MDV, you may
: obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
: September 11th security fee. An additional fee may apply to all Basic Air
: Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
: via telephone. The amount of such fee(s) will be disclosed at the point of

avatar
e*i
63
Another possible good thing : You might be able to earn miles after
the flight! Just like thankyou points.

【在 c***u 的大作中提到】
: 就是说要定coach class才能享受
:
: required
: exceed

avatar
l*y
64
试了下,照这样最大理论价值是1.48c,但是相当不flexible,不觉得收点的能用得上

【在 E*******y 的大作中提到】
: 如果机票在400刀以下,可以用固定的25000点换。超过的话,就只能1点按1c换了。
avatar
E*y
65
为什么是1.48?400/25K是1.6啊。

【在 l****y 的大作中提到】
: 试了下,照这样最大理论价值是1.48c,但是相当不flexible,不觉得收点的能用得上
avatar
l*y
66
试一下就知道啊,有30的fee

【在 E*******y 的大作中提到】
: 为什么是1.48?400/25K是1.6啊。
avatar
b*a
67
那好像比spg好一点, spg是$100 有 up to $2
this one is $100 有 2×1.4=2.8
avatar
d*h
68
这帖子讨论出结论了没?
avatar
d*h
69
我搜到的更奇葩:25,000 Points + $30.00 or $185.80

【在 s****a 的大作中提到】
: How? I randomly searched a ticket which cost $261.3 or 26130 points.
avatar
h*G
70
收点的是去兑business/first class
利润不是你们能想到的.

【在 N****g 的大作中提到】
: 我看了下UA到中国的往返票,FIA是按1:1算的。$1158的一张票收115800点,不过收点
: 的人估计有另外的用法。

avatar
l*y
71
for example?

【在 h**G 的大作中提到】
: 收点的是去兑business/first class
: 利润不是你们能想到的.

avatar
m*k
72
.l从北边去墨西哥比较划算啊。选直飞。
35000pt换600块。
avatar
OX
73
It's not that simple. Just called and there are some requirements to meet.
1. Must be roundtrip
2. Must have a Staurday stay
3. Must book at least 21 days in advance
4. Max 30 days stay for international
5. Only applies to the lowest fare for the same route
attached is a sample. lowest fare is $240.18 and eligible for the 25K
points + $30 booking fees basic air rewards.

required
exceed

【在 E*******y 的大作中提到】
: Basic Air Rewards
: We describe Basic Air Rewards both in terms of the number of Points required
: and a corresponding maximum dollar value ("MDV")., If the air reward you
: wish to obtain conforms to our specified booking terms, and does not exceed
: the corresponding MDV, it will be considered a Basic Air Reward. If the
: dollar cost of an air reward you wish to obtain exceeds the MDV, you may
: obtain a FlexAir Reward. MDV includes all taxes, destination fees and the
: September 11th security fee. An additional fee may apply to all Basic Air
: Rewards and a redemption fee will apply to all Basic Air Rewards redeemed
: via telephone. The amount of such fee(s) will be disclosed at the point of

avatar
m*k
74
i think you can select non stop to filter out stops flight

【在 OX 的大作中提到】
: It's not that simple. Just called and there are some requirements to meet.
: 1. Must be roundtrip
: 2. Must have a Staurday stay
: 3. Must book at least 21 days in advance
: 4. Max 30 days stay for international
: 5. Only applies to the lowest fare for the same route
: attached is a sample. lowest fare is $240.18 and eligible for the 25K
: points + $30 booking fees basic air rewards.
:
: required

avatar
f*s
75
我觉得和Ua, Aa delta都不会沾边,Alaska 我觉得最有可能
avatar
t*u
76
如果能是alaska的话
就爽死了
ak州内的机票都贵的要死的
但是距离很近

【在 f*******s 的大作中提到】
: 我觉得和Ua, Aa delta都不会沾边,Alaska 我觉得最有可能
avatar
t*j
77
我觉得是DELTA。求bless.

[发表自未名空间手机版 - m.mitbbs.com]

【在 f*******s 的大作中提到】
: 我觉得和Ua, Aa delta都不会沾边,Alaska 我觉得最有可能
avatar
P*a
78
好像订机票不划算啊,还不如1.2c卖掉。
还有其他的用处吗?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。