Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projecteuler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
projecteuler
Commits
0a0bd415
Commit
0a0bd415
authored
13 years ago
by
Taddeus Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Added bruteforce attempts for problems 243 and 364.
parent
4540b70b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
problem243.py
+28
-0
28 additions, 0 deletions
problem243.py
problem364.py
+53
-0
53 additions, 0 deletions
problem364.py
with
84 additions
and
0 deletions
.gitignore
0 → 100644
+
3
−
0
View file @
0a0bd415
*.pyc
*.swp
*~
This diff is collapsed.
Click to expand it.
problem243.py
0 → 100644
+
28
−
0
View file @
0a0bd415
def
is_resilient
(
n
,
d
):
if
n
==
1
:
return
True
for
div
in
xrange
(
2
,
min
(
n
,
d
)
+
1
):
if
not
n
%
div
and
not
d
%
div
:
return
False
return
True
def
resilience
(
d
):
r
=
0
for
n
in
xrange
(
1
,
d
):
if
is_resilient
(
n
,
d
):
r
+=
1
return
r
/
(
d
-
1.
)
smallest
=
15499.
/
94744
d
=
2
while
True
:
if
resilience
(
d
)
<
smallest
:
print
d
break
d
+=
1
This diff is collapsed.
Click to expand it.
problem364.py
0 → 100644
+
53
−
0
View file @
0a0bd415
from
copy
import
copy
from
sys
import
argv
,
exit
,
setrecursionlimit
setrecursionlimit
(
10000000
)
def
T
(
N
,
seats
=
None
):
if
not
seats
:
seats
=
[
False
]
*
N
elif
all
(
seats
):
return
1
t
=
0
seated
=
False
# 1. If there is any seat whose adjacent seat(s) are not occupied, take
# such a seat
for
i
,
taken
in
enumerate
(
seats
):
if
not
taken
and
(
not
i
or
not
seats
[
i
-
1
])
\
and
(
i
==
N
-
1
or
not
seats
[
i
+
1
]):
new_seats
=
copy
(
seats
)
new_seats
[
i
]
=
True
t
+=
T
(
N
,
new_seats
)
seated
=
True
# 2. If there is no such seat and there is any seat for which only one
# adjacent seat is occupied take such a seat
if
not
seated
:
for
i
,
taken
in
enumerate
(
seats
):
if
not
taken
and
((
not
i
and
seats
[
1
])
\
or
(
i
==
N
-
1
and
seats
[
N
-
2
])
or
(
seats
[
i
-
1
]
^
seats
[
i
+
1
])):
new_seats
=
copy
(
seats
)
new_seats
[
i
]
=
True
t
+=
T
(
N
,
new_seats
)
seated
=
True
# 3.Otherwise take one of the remaining available seats
if
not
seated
:
for
i
,
taken
in
enumerate
(
seats
):
if
not
taken
:
new_seats
=
copy
(
seats
)
new_seats
[
i
]
=
True
t
+=
T
(
N
,
new_seats
)
del
seats
return
t
if
len
(
argv
)
<
2
:
print
'
Usage: python %s N
'
%
argv
[
0
]
exit
(
1
)
print
T
(
int
(
argv
[
1
]))
%
100000007
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment