├── .gitignore ├── BedirT ├── Chapter 2 │ ├── UVa - 10038.cpp │ ├── UVa - 10258.cpp │ ├── UVa - 10954.cpp │ ├── UVa - 11286.cpp │ ├── UVa - 11581.cpp │ ├── UVa - 11933.cpp │ ├── UVa - 11988.cpp │ ├── UVa - 12532.cpp │ ├── UVa - 599.cpp │ ├── UVa - 793.cpp │ └── UVa - 978.cpp ├── Chapter 3 │ ├── UVa - 10337.cpp │ ├── UVa - 1047.cpp │ ├── UVa - 10487.cpp │ ├── UVa - 10660.cpp │ ├── UVa - 10755.cpp │ ├── UVa - 10819.cpp │ ├── UVa - 11085.cpp │ ├── UVa - 11157.cpp │ ├── UVa - 11389.cpp │ ├── UVa - 11951.cpp │ ├── UVa - 12032.cpp │ ├── UVa - 12192.cpp │ ├── UVa - 12210.cpp │ ├── UVa - 1237.cpp │ ├── UVa - 12455.cpp │ ├── UVa - 1262.cpp │ ├── UVa - 183.cpp │ ├── UVa - 357.cpp │ ├── UVa - 441.cpp │ ├── UVa - 481.cpp │ └── UVa - 524.cpp ├── Chapter 4 │ ├── UVa - 10004.cpp │ ├── UVa - 10171.cpp │ ├── UVa - 10305.cpp │ ├── UVa - 10350.cpp │ ├── UVa - 10369.cpp │ ├── UVa - 10557.cpp │ ├── UVa - 1056.cpp │ ├── UVa - 1103.cpp │ ├── UVa - 1112.cpp │ ├── UVa - 11487.cpp │ ├── UVa - 11492.cpp │ ├── UVa - 11747.cpp │ ├── UVa - 12442.cpp │ ├── UVa - 247.cpp │ ├── UVa - 924.cpp │ └── UVa - 988.cpp ├── Chapter 5 │ ├── UVa - 10586.cpp │ ├── UVa - 10751.cpp │ ├── UVa - 11231.cpp │ ├── UVa - 11254.cpp │ ├── UVa - 11723.cpp │ ├── UVa - 11879.cpp │ ├── UVa - 12036.cpp │ ├── UVa - 1210.cpp │ ├── UVa - 1225.cpp │ ├── UVa - 377.cpp │ ├── UVa - 389.cpp │ └── UVa - 443.cpp └── README.md ├── Contests ├── README.md └── September_16 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── F.cpp ├── Quyen ├── Chap 2 │ ├── UVa 10038 - Jolly Jumber.cpp │ ├── Uva 00599 - The Forest For The Tree.cpp │ ├── Uva 00987 - Lemmings Battle.cpp │ ├── Uva 10258 - Contest Scoreboard.cpp │ ├── Uva 10954 - Add All.cpp │ ├── Uva 11286 - Conformity.cpp │ ├── Uva 11933 - Splitting Number.cpp │ ├── Uva 11988 Broken Keyboard.cpp │ ├── Uva 12532 - Interval Product.cpp │ └── Uva793 Network Connection.cpp ├── Chap 3 │ ├── UVa 12455 - Bars.cpp │ ├── Uva 01237 - Expert Enough.cpp │ ├── Uva 10487 - Closest Sum.cpp │ ├── Uva 11085 - Back to the 8 Queen.cpp │ ├── Uva 12032 - The Monkey.cpp │ ├── Uva 12192 - Grapevine.cpp │ └── Uva 441 - Lotto.cpp └── README.md ├── README.md ├── iRasuna ├── Chapter 2 │ ├── UVa 10038.cpp │ ├── UVa 10258.cpp │ ├── UVa 1062.cpp │ ├── UVa 11933.cpp │ └── UVa 11988.cpp └── README.md └── nadide ├── Chapter2 ├── UVa-00599.cpp ├── UVa-00793.cpp ├── UVa-10038.cpp ├── UVa-1062.cpp ├── UVa-11286.cpp ├── UVa-11581.cpp └── UVa-12532.cpp ├── Chapter3 ├── 00183-Bit-Maps.cpp ├── UVa-00357.cpp ├── UVa-00441.cpp ├── UVa-01237.cpp ├── UVa-10487.cpp └── UVa-10660.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/.gitignore -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 10038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 10038.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 10258.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 10258.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 10954.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 10954.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 11286.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 11286.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 11581.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 11581.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 11933.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 11933.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 11988.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 11988.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 12532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 12532.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 599.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 599.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 793.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 793.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 2/UVa - 978.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 2/UVa - 978.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 10337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 10337.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 1047.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 1047.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 10487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 10487.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 10660.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 10660.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 10755.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 10755.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 10819.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 10819.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 11085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 11085.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 11157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 11157.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 11389.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 11389.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 11951.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 11951.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 12032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 12032.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 12192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 12192.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 12210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 12210.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 1237.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 1237.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 12455.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 12455.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 1262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 1262.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 183.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 357.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 357.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 441.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 441.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 481.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 481.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 3/UVa - 524.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 3/UVa - 524.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10004.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10171.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10171.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10305.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10350.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10369.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10369.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 10557.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 10557.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 1056.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 1056.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 1103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 1103.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 1112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 1112.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 11487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 11487.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 11492.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 11492.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 11747.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 11747.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 12442.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 12442.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 247.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 247.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 924.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 924.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 4/UVa - 988.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 4/UVa - 988.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 10586.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 10586.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 10751.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 10751.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 11231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 11231.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 11254.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 11254.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 11723.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 11723.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 11879.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 11879.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 12036.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 12036.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 1210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 1210.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 1225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 1225.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 377.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 377.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 389.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 389.cpp -------------------------------------------------------------------------------- /BedirT/Chapter 5/UVa - 443.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/Chapter 5/UVa - 443.cpp -------------------------------------------------------------------------------- /BedirT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/BedirT/README.md -------------------------------------------------------------------------------- /Contests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Contests/README.md -------------------------------------------------------------------------------- /Contests/September_16/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Contests/September_16/A.cpp -------------------------------------------------------------------------------- /Contests/September_16/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Contests/September_16/B.cpp -------------------------------------------------------------------------------- /Contests/September_16/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Contests/September_16/C.cpp -------------------------------------------------------------------------------- /Contests/September_16/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Contests/September_16/F.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/UVa 10038 - Jolly Jumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/UVa 10038 - Jolly Jumber.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 00599 - The Forest For The Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 00599 - The Forest For The Tree.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 00987 - Lemmings Battle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 00987 - Lemmings Battle.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 10258 - Contest Scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 10258 - Contest Scoreboard.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 10954 - Add All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 10954 - Add All.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 11286 - Conformity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 11286 - Conformity.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 11933 - Splitting Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 11933 - Splitting Number.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 11988 Broken Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 11988 Broken Keyboard.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva 12532 - Interval Product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva 12532 - Interval Product.cpp -------------------------------------------------------------------------------- /Quyen/Chap 2/Uva793 Network Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 2/Uva793 Network Connection.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/UVa 12455 - Bars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/UVa 12455 - Bars.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 01237 - Expert Enough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 01237 - Expert Enough.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 10487 - Closest Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 10487 - Closest Sum.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 11085 - Back to the 8 Queen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 11085 - Back to the 8 Queen.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 12032 - The Monkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 12032 - The Monkey.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 12192 - Grapevine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 12192 - Grapevine.cpp -------------------------------------------------------------------------------- /Quyen/Chap 3/Uva 441 - Lotto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/Chap 3/Uva 441 - Lotto.cpp -------------------------------------------------------------------------------- /Quyen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/Quyen/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/README.md -------------------------------------------------------------------------------- /iRasuna/Chapter 2/UVa 10038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/Chapter 2/UVa 10038.cpp -------------------------------------------------------------------------------- /iRasuna/Chapter 2/UVa 10258.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/Chapter 2/UVa 10258.cpp -------------------------------------------------------------------------------- /iRasuna/Chapter 2/UVa 1062.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/Chapter 2/UVa 1062.cpp -------------------------------------------------------------------------------- /iRasuna/Chapter 2/UVa 11933.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/Chapter 2/UVa 11933.cpp -------------------------------------------------------------------------------- /iRasuna/Chapter 2/UVa 11988.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/Chapter 2/UVa 11988.cpp -------------------------------------------------------------------------------- /iRasuna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/iRasuna/README.md -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-00599.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-00599.cpp -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-00793.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-00793.cpp -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-10038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-10038.cpp -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-1062.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-11286.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-11286.cpp -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-11581.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-11581.cpp -------------------------------------------------------------------------------- /nadide/Chapter2/UVa-12532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter2/UVa-12532.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/00183-Bit-Maps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/00183-Bit-Maps.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/UVa-00357.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/UVa-00357.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/UVa-00441.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/UVa-00441.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/UVa-01237.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/UVa-01237.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/UVa-10487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/UVa-10487.cpp -------------------------------------------------------------------------------- /nadide/Chapter3/UVa-10660.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/Chapter3/UVa-10660.cpp -------------------------------------------------------------------------------- /nadide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NAU-ACM/ICPC-Question-Solving/HEAD/nadide/README.md --------------------------------------------------------------------------------