Redian新闻
>
想关掉刚用了三个月的卡,会影响信用吗
avatar
想关掉刚用了三个月的卡,会影响信用吗# Money - 海外理财
a*g
1
面的时候一时没想出来比较理想的方法
还请高手指点
Unsighed 30-bit integer B, 0 <= B < 2^30,
we say integer A conforms to integer B if A has bits set to 1 in all
positions where B has bits set to 1.
e.g. 00 0000 1111 0111 1101 1110 conforms to
00 0000 1100 0110 1101 1010
Write function which takes three 30-bit unsighed integer as input, and
returns the number of unsighed 30-bit integers that conform to at least one
of unsighed 30-bit A, B, C
e.g. A = 11 1111 1111 1111 1111 1111 1111 1001
B = 11 1111 1111 1111 1111 1111 1111 0011
C = 11 1111 1111 1111 1111 1111 1111 0100
Should return 11.
0011, 0100, 0101, 0110, 0111, 1001, 1011, 1100, 1101, 1110, 1111
Time complexity O(1), space complexity O(1)
avatar
B*g
2
十月份申了Att universal,刷了三个月才知道要Non-AT
avatar
c*p
3
没理解错的话,如果A conform to A',那么A'中为1的位,A对应地必须为1;A'中为0的
位,A对应地可以为1或者0。
如果令ones(A)=A中1的位数(对于30-bit unsigned有O(1)算法),
则A'的可能数为2^(30-ones(A))。
令f(A) = A'的可能数,
那么答案应该是:
f(A) + f(B) + f(C) -f(A&B) - f(A&C) - f(B&C) + f(A&B&C)
=====
囧,,,,和例子验证了一下,好像不对。。。。
=====
上式改成
f(A) + f(B) + f(C) -f(A|B) - f(A|C) - f(B|C) + f(A|B|C)

one

【在 a*****g 的大作中提到】
: 面的时候一时没想出来比较理想的方法
: 还请高手指点
: Unsighed 30-bit integer B, 0 <= B < 2^30,
: we say integer A conforms to integer B if A has bits set to 1 in all
: positions where B has bits set to 1.
: e.g. 00 0000 1111 0111 1101 1110 conforms to
: 00 0000 1100 0110 1101 1010
: Write function which takes three 30-bit unsighed integer as input, and
: returns the number of unsighed 30-bit integers that conform to at least one
: of unsighed 30-bit A, B, C

avatar
h*0
4
什么是non-AT?
avatar
a*g
5
理解没错
不过好像在考虑A B C 重复的个数里面 不能简单的A&B B&C
我也不是很清楚

0的

【在 c****p 的大作中提到】
: 没理解错的话,如果A conform to A',那么A'中为1的位,A对应地必须为1;A'中为0的
: 位,A对应地可以为1或者0。
: 如果令ones(A)=A中1的位数(对于30-bit unsigned有O(1)算法),
: 则A'的可能数为2^(30-ones(A))。
: 令f(A) = A'的可能数,
: 那么答案应该是:
: f(A) + f(B) + f(C) -f(A&B) - f(A&C) - f(B&C) + f(A&B&C)
: =====
: 囧,,,,和例子验证了一下,好像不对。。。。
: =====

avatar
m*k
6

CITI的ATT信用卡需要每月非ATT消费等于或大于ATT消费,才会给足ATT部分的5%-10%
CASH BACK
楼主显然忽略了这一点。
关卡会影响信用:总CL下降,DEBT总量相对总CL上升,帐户平均历史缩短。

【在 h********0 的大作中提到】
: 什么是non-AT?
avatar
f*l
7
思路是对的,我的理解跟你一样,不过稍微有点变化。
令 zeros(A) = A中0的位数
A'的可能数为2^zeros(A)
f(A) = A'的可能数,
则答案是:
f(A) + f(B) + f(C) - f(A|B) - f(A|C) - f(B|C) + f(A|B|C)
对着例子算了一下,返回是11
觉得象是排列组合的题,这门课我学的不好,:-(

0的

【在 c****p 的大作中提到】
: 没理解错的话,如果A conform to A',那么A'中为1的位,A对应地必须为1;A'中为0的
: 位,A对应地可以为1或者0。
: 如果令ones(A)=A中1的位数(对于30-bit unsigned有O(1)算法),
: 则A'的可能数为2^(30-ones(A))。
: 令f(A) = A'的可能数,
: 那么答案应该是:
: f(A) + f(B) + f(C) -f(A&B) - f(A&C) - f(B&C) + f(A&B&C)
: =====
: 囧,,,,和例子验证了一下,好像不对。。。。
: =====

avatar
B*g
8
这是刚知道的,难怪三月都没给过cashback

CITI的ATT信用卡需要每月非ATT消费等于或大于ATT消费,才会给足ATT部分的5%-10%
CASH BACK

【在 m*********k 的大作中提到】
:
: CITI的ATT信用卡需要每月非ATT消费等于或大于ATT消费,才会给足ATT部分的5%-10%
: CASH BACK
: 楼主显然忽略了这一点。
: 关卡会影响信用:总CL下降,DEBT总量相对总CL上升,帐户平均历史缩短。

avatar
m*z
9
用或不用与

0的

【在 c****p 的大作中提到】
: 没理解错的话,如果A conform to A',那么A'中为1的位,A对应地必须为1;A'中为0的
: 位,A对应地可以为1或者0。
: 如果令ones(A)=A中1的位数(对于30-bit unsigned有O(1)算法),
: 则A'的可能数为2^(30-ones(A))。
: 令f(A) = A'的可能数,
: 那么答案应该是:
: f(A) + f(B) + f(C) -f(A&B) - f(A&C) - f(B&C) + f(A&B&C)
: =====
: 囧,,,,和例子验证了一下,好像不对。。。。
: =====

avatar
B*g
10
手机上发的,不止为什么没显示全,non-ATT Purchase要喝att purchase match才给
cashback。

【在 h********0 的大作中提到】
: 什么是non-AT?
avatar
c*p
11
嗯,改成or就对了,我也刚推出来。。。

【在 f**********l 的大作中提到】
: 思路是对的,我的理解跟你一样,不过稍微有点变化。
: 令 zeros(A) = A中0的位数
: A'的可能数为2^zeros(A)
: f(A) = A'的可能数,
: 则答案是:
: f(A) + f(B) + f(C) - f(A|B) - f(A|C) - f(B|C) + f(A|B|C)
: 对着例子算了一下,返回是11
: 觉得象是排列组合的题,这门课我学的不好,:-(
:
: 0的

avatar
B*g
12
谢谢,看来还是得留着了,只能搞起香草卡才能match ATT消费了

【在 m*********k 的大作中提到】
:
: CITI的ATT信用卡需要每月非ATT消费等于或大于ATT消费,才会给足ATT部分的5%-10%
: CASH BACK
: 楼主显然忽略了这一点。
: 关卡会影响信用:总CL下降,DEBT总量相对总CL上升,帐户平均历史缩短。

avatar
c*p
13
嗯。。

【在 m***z 的大作中提到】
: 用或不用与
:
: 0的

avatar
H*V
14
这么变态,太累了,
btw, any card if you close in short time it is NOT good for your credit
avatar
h*6
15
inclusion and exclusion
avatar
G*A
16
2^{k1} + 2^{k2} + 2^{k3} - 2^{k1&&k2} - 2^{k1&&k3} - 2^{k2&&k3} + 2^{k1&&k2&
&k3} = 2^2 + 2^2 + 2^3 - 2^1 - 2^1 - 2^1 + 2^0 = 11

one

【在 a*****g 的大作中提到】
: 面的时候一时没想出来比较理想的方法
: 还请高手指点
: Unsighed 30-bit integer B, 0 <= B < 2^30,
: we say integer A conforms to integer B if A has bits set to 1 in all
: positions where B has bits set to 1.
: e.g. 00 0000 1111 0111 1101 1110 conforms to
: 00 0000 1100 0110 1101 1010
: Write function which takes three 30-bit unsighed integer as input, and
: returns the number of unsighed 30-bit integers that conform to at least one
: of unsighed 30-bit A, B, C

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